File tree Expand file tree Collapse file tree 3 files changed +2
-31
lines changed
{{cookiecutter.project_slug}} Expand file tree Collapse file tree 3 files changed +2
-31
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,5 @@ MONGO_HOST={{cookiecutter.mongo_host}}
4343MONGO_USER = {{cookiecutter.mongo_user}}
4444MONGO_PASSWORD = {{cookiecutter.mongodb_password}}
4545MONGO_DATABASE = {{cookiecutter.mongodb_database}}
46- # To override these settings, set
47- # MONGO_DATABASE_URI=
48-
49- # Neo4j
50- # NEO4J_SERVER=neo4j
51- # NEO4J_USERNAME=neo4j
52- # NEO4J_PASSWORD={{cookiecutter.neo4j_password}}
53- # NEO4J_AUTH=neo4j:{{cookiecutter.neo4j_password}}
54- # NEO4J_BOLT=bolt
46+ # To override the mongo URI, override with this setting
47+ # MONGO_DATABASE_URI=
Original file line number Diff line number Diff line change @@ -27,14 +27,6 @@ services:
2727 - traefik.http.routers.${STACK_NAME?Variable not set}-traefik-public-http.rule=Host(`${DOMAIN?Variable not set}`)
2828 - traefik.http.services.${STACK_NAME?Variable not set}-traefik-public.loadbalancer.server.port=80
2929
30- pgadmin :
31- ports :
32- - " 5050:5050"
33-
34- neo4j :
35- environment :
36- - NEO4J_AUTH=none
37-
3830 flower :
3931 ports :
4032 - " 5555:5555"
Original file line number Diff line number Diff line change @@ -118,11 +118,6 @@ services:
118118
119119 backend :
120120 image : " ${DOCKER_IMAGE_BACKEND?Variable not set}:${TAG-latest}"
121- depends_on :
122- - db
123- - neo4j
124- volumes :
125- - app-neo4j-import:/app/imports
126121 logging :
127122 driver : " json-file"
128123 options :
@@ -153,12 +148,6 @@ services:
153148
154149 celeryworker :
155150 image : " ${DOCKER_IMAGE_CELERYWORKER?Variable not set}:${TAG-latest}"
156- depends_on :
157- - db
158- - neo4j
159- - queue
160- volumes :
161- - app-neo4j-import:/app/imports
162151 logging :
163152 driver : " json-file"
164153 options :
@@ -200,9 +189,6 @@ services:
200189
201190volumes :
202191 app-db-data :
203- app-neo4j-data :
204- app-neo4j-plugins :
205- app-neo4j-import :
206192
207193networks :
208194 traefik-public :
You can’t perform that action at this time.
0 commit comments