Created
July 14, 2016 09:31
-
-
Save mootoh/3fa6395239564c6ad8133d472cca3a56 to your computer and use it in GitHub Desktop.
OS X Docker で Redmine を最速で起動する
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
redmine-mysql: | |
restart: always | |
image: sameersbn/mysql:latest | |
environment: | |
- DB_USER=redmine | |
- DB_PASS=password | |
- DB_NAME=redmine_production | |
volumes: | |
- /tmp/docker/redmine/mysql:/var/lib/mysql | |
redmine: | |
image: sameersbn/redmine:3.3.0 | |
links: | |
- redmine-mysql:mysql | |
environment: | |
- TZ=Asia/Tokyo | |
- REDMINE_PORT=10083 | |
- REDMINE_HTTPS=false | |
- REDMINE_RELATIVE_URL_ROOT= | |
- REDMINE_SECRET_TOKEN= | |
- REDMINE_SUDO_MODE_ENABLED=false | |
- REDMINE_SUDO_MODE_TIMEOUT=15 | |
- REDMINE_CONCURRENT_UPLOADS=2 | |
- REDMINE_BACKUP_SCHEDULE= | |
- REDMINE_BACKUP_EXPIRY= | |
- REDMINE_BACKUP_TIME= | |
- SMTP_ENABLED=false | |
- SMTP_METHOD=smtp | |
- SMTP_DOMAIN=www.example.com | |
- SMTP_HOST=smtp.gmail.com | |
- SMTP_PORT=587 | |
- [email protected] | |
- SMTP_PASS=password | |
- SMTP_STARTTLS=true | |
- SMTP_AUTHENTICATION=:login | |
- IMAP_ENABLED=false | |
- IMAP_HOST=imap.gmail.com | |
- IMAP_PORT=993 | |
- [email protected] | |
- IMAP_PASS=password | |
- IMAP_SSL=true | |
- IMAP_INTERVAL=30 | |
ports: | |
- "10083:80" | |
volumes: | |
- /tmp/docker/redmine/redmine:/home/redmine/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dockerこれだけ見るとすぎょいお手軽そう