Go to file
Eugene Ivantsov 38b24ecbcc Merged in SCALE-137-jdbc-url-ampersand (pull request #178)
SCALE-137: Replace '&' with `&`

* SCALE-137: replace '&' with '&'

* Fix unit tests

* Fix unit tests

* Check if jdbc url container excaped ampersand before replacing


Approved-by: Yifei Zhang
2024-08-19 05:10:29 +00:00
config Merged in SCALE-137-jdbc-url-ampersand (pull request #178) 2024-08-19 05:10:29 +00:00
func-tests Merged in CLIP-1906-fix-volume-declaration (pull request #173) 2024-07-23 23:41:51 +00:00
shared-components@821a0fbca0 Rename env var 2023-08-11 15:08:14 +10:00
tests Merged in SCALE-137-jdbc-url-ampersand (pull request #178) 2024-08-19 05:10:29 +00:00
.dockerignore DCD-545: Import the templater script. 2019-08-06 09:01:08 +10:00
.env DCD-1351: Add graceful-shutdown script. 2021-08-26 15:08:52 +10:00
.gitignore SCALE-33 Add .idea to .gitignore 2020-09-06 20:23:19 +01:00
.gitmodules Integrate shared components in Docker build 2019-11-20 20:54:04 +11:00
.hadolint.yaml Merged in CLIP-1872-integrate-sha256-check (pull request #163) 2024-05-02 04:55:11 +00:00
.snyk Merged in CLIP-1907-update-skuk-threshold (pull request #176) 2024-07-31 01:27:07 +00:00
CONTRIBUTING.md Add contributing guidelines to README 2020-03-03 16:34:39 +11:00
DEVELOPMENT.md Merged in CLIP-1859-move-readme-to-helm-charts (pull request #156) 2024-03-25 23:10:18 +00:00
Dockerfile Merged in CLIP-1909-pin-base-image-tag-to-ubuntu-noble (pull request #175) 2024-07-30 07:50:38 +00:00
Dockerfile.ubi Merged in CLIP-1872-integrate-sha256-check (pull request #163) 2024-05-02 04:55:11 +00:00
LICENSE DCD-572: Add license. 2019-08-19 08:41:43 +10:00
README.md Merged in fix-readme (pull request #165) 2024-06-12 03:06:42 +00:00
bitbucket-pipelines.yml Merged in use-latest-confluence-func-tests (pull request #177) 2024-08-07 01:46:56 +00:00
bitbucket-pipelines.yml.j2 Merged in use-latest-confluence-func-tests (pull request #177) 2024-08-07 01:46:56 +00:00
entrypoint.py Make unsetting sensitive vars optional 2022-12-05 19:32:33 +11:00
pipelines-generator.py Merged in CLIP-1907-update-skuk-threshold (pull request #176) 2024-07-31 01:27:07 +00:00
security-assistant.yml update owner 2023-12-06 03:19:19 +00:00
shutdown-wait.sh DCD-1351: Supply target PID to wait on. 2021-08-26 15:27:51 +10:00

README.md

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.


Atlassian Confluence Server

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 with the Dockerfile at https://bitbucket.org/atlassian-docker/docker-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.

Advanced Usage

For advanced usage, e.g. configuration, troubleshooting, supportability, etc., please check the Full Documentation.