Confluence Server 7.8 beta is available now

For example, to update my test server to this new beta release I edited my docker-compose.yml

CHANGED:

confluence:
        image: atlassian/confluence-server:7.8.0-m37

TO:

confluence:
        image: atlassian/confluence-server:7.8.0-beta1

and what I would like to do is use the “eap” label that Atlassian says they use, but the person who is publishing the images to docker hub isn’t using the label. If the “eap” label was in use all we’d have to do is restart our container to get the latest EAP version, we wouldn’t need to know the magic label “7.8.0-m37” or “7.8.0-beta1” or whatever.

confluence:
        image: atlassian/confluence-server:eap

Thanks!