Skip to content

Instantly share code, notes, and snippets.

@brendanp
Created December 20, 2019 22:08
Show Gist options
  • Save brendanp/642344cb763d62995ca1d3957c1272b3 to your computer and use it in GitHub Desktop.
Save brendanp/642344cb763d62995ca1d3957c1272b3 to your computer and use it in GitHub Desktop.
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