Initial commit

This commit is contained in:
2024-03-12 22:28:05 +01:00
commit 7711bcc220
40 changed files with 5137 additions and 0 deletions

23
docker/docker-compose.yml Normal file
View 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