Browse Source

adding new parameter to installation

Boris Aguilar 5 years ago
parent
commit
13952f8e45
1 changed files with 3 additions and 0 deletions
  1. 3 0
      docker-compose.yml

+ 3 - 0
docker-compose.yml

@@ -16,6 +16,7 @@ services:
       - "db"
       - "redis"
     environment:
+      setup_done: "false"
       db_uri: "postgres://postgres:${POSTGRES_PASSWORD}@db/postgres"
       WEB2PY_PASSWORD: admin
       WEB2PY_ADMIN_SECURITY_BYPASS: "true"
@@ -30,6 +31,7 @@ services:
       - "redis"
       - "web"
     environment:
+      setup_done: "true"
       db_migrate: "false"
     image: "hub.botprotec.com/botpro/botpro-backend:${BACKEND_TAG}"
   web2py-rq-worker-low:
@@ -38,6 +40,7 @@ services:
       - "redis"
       - "web"
     environment:
+      setup_done: "true"
       db_migrate: "false"
       redis_queue: "low"
     image: "hub.botprotec.com/botpro/botpro-backend-rq-worker:${BACKEND_TAG}"