remove nginx

This commit is contained in:
2026-04-10 00:25:43 +02:00
parent 9223e4d35f
commit 94527be868
16 changed files with 259 additions and 126 deletions
+8 -4
View File
@@ -1,6 +1,9 @@
version: '3.8'
services:
backend:
build: ./backend
container_name: astronome-backend
restart: unless-stopped
volumes:
- ./data:/data
@@ -8,13 +11,14 @@ services:
- DATABASE_URL=sqlite:///data/astronome.db
- RUST_LOG=info
ports:
- "3301:3301"
- 3001:3001
frontend:
build: ./frontend
container_name: astronome-frontend
restart: unless-stopped
ports:
- "3300:80"
- 3000:80
depends_on:
- backend
@@ -24,7 +28,7 @@ services:
ports:
- "80:80"
volumes:
- ./nginx-conf.conf:/etc/nginx/nginx-conf.conf:ro
- ./nginx-config.conf:/etc/nginx/nginx-config.conf:ro
depends_on:
- backend
- frontend
- frontend