This commit is contained in:
2026-03-01 21:40:09 +05:00
parent d37c255994
commit a1dd1a3279
10 changed files with 186 additions and 119 deletions

View File

@@ -1,6 +1,8 @@
services:
api:
build: .
build:
context: .
dockerfile: Dockerfile.api
ports:
- "8000:8000"
environment:
@@ -19,3 +21,13 @@ services:
- REDIS_PASSWORD=CNXpuhMdxXHo7ZK8bhtXDvgXVZcjRn
volumes:
- ./data:/app/data
web:
build:
context: ./web
dockerfile: ../Dockerfile.web
ports:
- "3000:80"
depends_on:
- api
volumes:
- ./web:/usr/share/nginx/html:ro