Initial commit

This commit is contained in:
kamaji
2026-01-26 04:57:20 -06:00
commit bbd720e2a2
8 changed files with 336 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: "3.9"
services:
backend:
build: ./backend
container_name: ap-backend
volumes:
- ./data:/data
expose:
- "8000"
nginx:
image: nginx:stable
container_name: ap-nginx
ports:
- "9090:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./nginx/htpasswd:/etc/nginx/htpasswd:ro
- ./frontend:/usr/share/nginx/html:ro
depends_on:
- backend