Created
December 20, 2019 22:08
-
-
Save brendanp/642344cb763d62995ca1d3957c1272b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
postgres: | |
image: blacklabelops/postgres | |
restart: always | |
networks: | |
- confluencenet | |
volumes: | |
- ./postgresql:/var/lib/postgresql | |
environment: | |
- POSTGRES_DB=confluence | |
- POSTGRES_USER=confluence | |
- POSTGRES_PASSWORD=confluence | |
- POSTGRES_ENCODING=UNICODE | |
- POSTGRES_COLLATE=C | |
- POSTGRES_COLLATE_TYPE=C | |
confluence: | |
image: atlassian/confluence-server:7.1.2 | |
restart: always | |
networks: | |
- confluencenet | |
volumes: | |
- ./confluence-home:/var/atlassian/application-data/confluence | |
ports: | |
- 8090:8090 | |
networks: | |
confluencenet: {} | |
# JDBC URL: jdbc:postgresql://postgres:5432/confluence | |
# db: login: confluence / password: confluence | |
# need a Confluence license such as a $10 10 user license or timebomb license |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment