Last active
November 24, 2021 07:52
-
-
Save neogeogre/681ceaf401f06d1bc40d3f35a0a048fa to your computer and use it in GitHub Desktop.
Confluence and redmine local instance
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: | |
confluence: | |
image: idalko/atlassian-confluence | |
environment: | |
- DISABLE_NOTIFICATIONS=TRUE | |
- CONF_ARGS=-Datlassian.plugins.enable.wait=300 | |
volumes: | |
- ./data:/opt/atlassian/confluence/data | |
ports: | |
- 8090:8090 | |
restart: always | |
confluencedb: | |
image: postgres:9.6 | |
environment: | |
- POSTGRES_PASSWORD=secret | |
- POSTGRES_USER=confluence | |
- POSTGRES_DB=confluence | |
volumes: | |
- ./db:/var/lib/postgresql/data | |
restart: always |
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.1' | |
services: | |
redmine: | |
image: redmine:latest | |
restart: always | |
networks: | |
- redmine | |
volumes: | |
- redmine-data:/usr/src/redmine/files | |
ports: | |
- 80:3000 | |
environment: | |
- 'REDMINE_DB_POSTGRES=postgres' | |
- 'REDMINE_DB_DATABASE=redmine' | |
- 'REDMINE_DB_PASSWORD=password' | |
postgres: | |
image: postgres:latest | |
restart: always | |
networks: | |
- redmine | |
volumes: | |
- postgres-data:/var/lib/postgresql/data | |
environment: | |
- 'POSTGRES_PASSWORD=password' | |
- 'POSTGRES_DB=redmine' | |
volumes: | |
postgres-data: | |
redmine-data: | |
networks: | |
redmine: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment