Initial commit
This commit is contained in:
23
docker/docker-compose.yml
Normal file
23
docker/docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
backend:
|
||||
build:
|
||||
context: ../backend
|
||||
environment:
|
||||
- ABOVE_ME__BIND_TO=0.0.0.0:9000
|
||||
env_file:
|
||||
- .env
|
||||
frontend:
|
||||
build:
|
||||
context: ../frontend
|
||||
restart: unless-stopped
|
||||
gateway:
|
||||
image: nginx
|
||||
depends_on:
|
||||
- backend
|
||||
- frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:9000:8080"
|
||||
volumes:
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
- ./privacy-policy.html:/usr/share/nginx/html/privacy-policy.html:ro
|
||||
Reference in New Issue
Block a user