Skip to content

Commit 9d2890c

Browse files
committed
removed unneeded docker dependencies
1 parent eda3cea commit 9d2890c

File tree

3 files changed

+2
-31
lines changed

3 files changed

+2
-31
lines changed

{{cookiecutter.project_slug}}/.env

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,5 @@ MONGO_HOST={{cookiecutter.mongo_host}}
4343
MONGO_USER={{cookiecutter.mongo_user}}
4444
MONGO_PASSWORD={{cookiecutter.mongodb_password}}
4545
MONGO_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=

{{cookiecutter.project_slug}}/docker-compose.override.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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"

{{cookiecutter.project_slug}}/docker-compose.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff 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

201190
volumes:
202191
app-db-data:
203-
app-neo4j-data:
204-
app-neo4j-plugins:
205-
app-neo4j-import:
206192

207193
networks:
208194
traefik-public:

0 commit comments

Comments
 (0)