Skip to content

Instantly share code, notes, and snippets.

@Mahito
Created May 26, 2017 07:55
Show Gist options
  • Save Mahito/6ea905c0da4dc13c07d035defbbf5488 to your computer and use it in GitHub Desktop.
Save Mahito/6ea905c0da4dc13c07d035defbbf5488 to your computer and use it in GitHub Desktop.
version: '2'
services:
nginx:
image: nginx
ports:
- 80:80
depends_on:
- redmine
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf
restart: always
redmine:
image: redmine:3-passenger
environment:
REDMINE_DB_MYSQL: db
REDMINE_DB_PASSWORD: example
depends_on:
- db
restart: always
db:
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: example
MYSQL_DATABASE: redmine
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment