Skip to content

Instantly share code, notes, and snippets.

@dokenzy
Last active February 9, 2019 12:57
Show Gist options
  • Save dokenzy/b6a42e68637505ffac6f43155035fe8a to your computer and use it in GitHub Desktop.
Save dokenzy/b6a42e68637505ffac6f43155035fe8a to your computer and use it in GitHub Desktop.
redmine docker-compose
version: '3.1'
services:
redmine:
image: redmine:4.0.1
container_name: redmine
restart: always
ports:
- 8080:3000
environment:
REDMINE_DB_POSTGRES: postgres
REDMINE_DB_DATABASE: redmine
REDMINE_DB_PASSWORD: verydifficult
TZ: Asia/Seoul
volumes:
- data-redmine:/usr/src/redmine/files
postgres:
image: postgres:11.1
restart: always
environment:
POSTGRES_DB: redmine
POSTGRES_PASSWORD: verydifficult
volumes:
- data-postgres:/var/lib/postgresql/data
volumes:
data-redmine:
data-postgres:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment