Add docker-compose-postgresql.yml file

This commit is contained in:
tompizmor
2017-05-16 11:08:33 +02:00
committed by GitHub
parent c6041f9993
commit 2da6ace898

View File

@@ -0,0 +1,21 @@
version: '2'
services:
postgresql:
image: 'bitnami/postgresql:latest'
volumes:
- 'postgresql_data:/bitnami/postgresql'
redmine:
image: 'bitnami/redmine:latest'
ports:
- '80:3000'
environment:
- REDMINE_DB_POSTGRES=postgresql
volumes:
- 'redmine_data:/bitnami/redmine'
depends_on:
- postgresql
volumes:
postgresql_data:
driver: local
redmine_data:
driver: local