Add files via upload

This commit is contained in:
Chinese-tingfeng
2025-10-13 02:12:38 +08:00
committed by GitHub
parent fbeb1f3d9d
commit aa9366f1f0
11 changed files with 652 additions and 0 deletions

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
# docker-compose.yml
services:
nginx:
image: nginx:latest
container_name: notion-2api-nginx
restart: always
ports:
- "${NGINX_PORT:-8088}:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- app
networks:
- notion-net
app:
build:
context: .
dockerfile: Dockerfile
container_name: notion-2api-app
restart: unless-stopped
env_file:
- .env
networks:
- notion-net
networks:
notion-net:
driver: bridge