MoneyPrinterTurbo/docker-compose.yml
2025-03-22 21:43:12 +01:00

14 lines
278 B
YAML

x-common-volumes: &common-volumes
- ./:/MoneyPrinterTurbo
services:
api:
build:
context: .
dockerfile: Dockerfile
container_name: "api"
ports:
- "8080:8080"
command: [ "python3", "main.py" ]
volumes: *common-volumes
restart: always