Added setup-frappe.sh as a file to the docker-frappe container, Added start-frappe.sh as a script file to start the frappe container once all the containers are up and running, Added redis and mariadb as links to the frappe container, made changes to the docker-compose and Dockerfile, issue: could'nt control startup order of containers (goal for future dev), Run docker-compose up -d to start all the containers

This commit is contained in:
vishalseshagiri
2017-07-20 11:48:19 +00:00
parent ef99b8baee
commit d4d6952755
5 changed files with 25 additions and 44 deletions

View File

@@ -19,13 +19,13 @@ services:
- "8000:5000"
stdin_open: true
tty: true
#links:
# - redis
# - mariadb
network_mode: "host"
links:
- redis
- mariadb
#network_mode: "host"
depends_on:
- "mariadb"
- "redis"
- mariadb
- redis
volumes:
- ./code:/home/frappe/code