Files
FiDA_Python/docker-compose.yml

13 lines
283 B
YAML
Raw Normal View History

2026-02-04 17:58:32 +08:00
services:
2026-02-05 09:58:43 +08:00
aida_server:
container_name: "FiDA_${SERVE_ENV}_Server"
build:
context: .
dockerfile: Dockerfile
2026-02-04 17:58:32 +08:00
working_dir: /app
volumes:
2026-02-05 10:26:16 +08:00
- ./:/app
2026-02-05 09:58:43 +08:00
- ./.env:/app/.env
- /etc/localtime:/etc/localtime:ro
2026-02-04 17:58:32 +08:00
ports:
2026-02-05 10:15:03 +08:00
- "${SERVE_PORT}:80"