6d48710b4a
CLIP-1859: Migrate README to Helm chart docs * CLIP-1859: Migrated README to Helm chart docs. * CLIP-1859: Made -server repo deprecation message and reference to full readme to top. Approved-by: Eugene Ivantsov Approved-by: Minh Tran Approved-by: Adam Brokes |
||
---|---|---|
config | ||
func-tests | ||
shared-components@821a0fbca0 | ||
tests | ||
.dockerignore | ||
.env | ||
.gitignore | ||
.gitmodules | ||
.hadolint.yaml | ||
.snyk | ||
bitbucket-pipelines.yml | ||
bitbucket-pipelines.yml.j2 | ||
CONTRIBUTING.md | ||
DEVELOPMENT.md | ||
Dockerfile | ||
Dockerfile.ubi | ||
entrypoint.py | ||
LICENSE | ||
pipelines-generator.py | ||
README.md | ||
security-assistant.yml | ||
shutdown-wait.sh |
Note: This Docker image has been published as both atlassian/confluence
and atlassian/confluence-server
up until February 15, 2024.
Both names refer to the same image. However, post-February 15, 2024, the atlassian/confluence-server
version ceased receiving updates, including both existing and new tags.
If you have been using atlassian/confluence-server
, switch to the atlassian/confluence
image to ensure access to the latest updates and new tags.
For more information regarding configuration, troubleshooting, supportability, .etc, please check the Full Documentation.
Confluence Server is where you create, organise and discuss work with your team. Capture the knowledge that's too often lost in email inboxes and shared network drives in Confluence - where it's easy to find, use, and update. Give every team, project, or department its own space to create the things they need, whether it's meeting notes, product requirements, file lists, or project plans, you can get more done in Confluence.
Learn more about Confluence Server: https://www.atlassian.com/software/confluence
You can find the repository for this Dockerfile at https://hub.docker.com/r/atlassian/confluence-server
Overview
This Docker container makes it easy to get an instance of Confluence up and running.
Use docker version >= 20.10.10
Quick Start
For the directory in the environmental variable CONFLUENCE_HOME
that is used
to store Confluence data (amongst other things) we recommend mounting a host
directory as a data volume:
Additionally, if running Confluence in Data Center mode it is required that a
shared filesystem is mounted. The mountpoint (inside the container) can be
configured with CONFLUENCE_SHARED_HOME
.
Start Atlassian Confluence Server:
docker run -v /data/your-confluence-home:/var/atlassian/application-data/confluence --name="confluence" -d -p 8090:8090 -p 8091:8091 atlassian/confluence
Success. Confluence is now available on http://localhost:8090*
Please ensure your container has the necessary resources allocated to it. We recommend 2GiB of memory allocated to accommodate the application server. See Supported Platforms for further information.
* Note: If you are using docker-machine
on Mac OS X, please use open http://$(docker-machine ip default):8090
instead.