mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-22 00:47:22 +08:00
14 lines
278 B
YAML
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 |