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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user