Created
January 18, 2019 13:13
-
-
Save lcube45/3446d24b8ff327f6eaabd6aa68d65d38 to your computer and use it in GitHub Desktop.
tuleap docker compose
This file contains 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: "2.1" | |
services: | |
tuleap: | |
image: enalean/tuleap-aio | |
restart: unless-stopped | |
environment: | |
VIRTUAL_HOST: "${VIRTUAL_HOST:-localhost}" | |
DB_HOST: "db" | |
MYSQL_ROOT_PASSWORD: "tuleap" | |
volumes: | |
- tuleap-data:/data | |
# - ~/workspace/tuleap:/usr/share/tuleap | |
ports: | |
- 80:80 | |
- 443:443 | |
depends_on: | |
- db | |
db: | |
image: mysql:5.6 | |
restart: unless-stopped | |
volumes: | |
- db-data:/var/lib/mysql | |
- ./sql_mode.cnf:/etc/mysql/conf.d/sql_mode.cnf | |
environment: | |
MYSQL_ROOT_PASSWORD: "tuleap" | |
volumes: | |
db-data: | |
tuleap-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment