moved docker files into docker folder

renamed hc-network to test-network in docker-compose file
This commit is contained in:
Ulf Gebhardt 2021-02-13 19:06:19 +01:00
parent e0e19d90ed
commit bf484ef6e6
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD
4 changed files with 7 additions and 7 deletions

View File

@ -4,13 +4,13 @@ version: "3.4"
services: services:
webapp: webapp:
build: build:
dockerfile: webapp.Dockerfile dockerfile: docker/webapp.Dockerfile
target: branded target: branded
context: . context: .
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
- hc-network - test-network
depends_on: depends_on:
- backend - backend
environment: environment:
@ -21,11 +21,11 @@ services:
- PUBLIC_REGISTRATION=true - PUBLIC_REGISTRATION=true
backend: backend:
build: build:
dockerfile: backend.Dockerfile dockerfile: docker/backend.Dockerfile
target: branded target: branded
context: . context: .
networks: networks:
- hc-network - test-network
depends_on: depends_on:
- neo4j - neo4j
ports: ports:
@ -48,7 +48,7 @@ services:
neo4j: neo4j:
image: ocelotsocialnetwork/neo4j:community image: ocelotsocialnetwork/neo4j:community
networks: networks:
- hc-network - test-network
environment: environment:
- NEO4J_AUTH=none - NEO4J_AUTH=none
- NEO4J_dbms_security_procedures_unrestricted=algo.*,apoc.* - NEO4J_dbms_security_procedures_unrestricted=algo.*,apoc.*
@ -60,6 +60,6 @@ services:
ports: ports:
- 1080:80 - 1080:80
networks: networks:
- hc-network - test-network
networks: networks:
hc-network: test-network: