todo/docker-compose.yml

18 lines
324 B
YAML
Raw Normal View History

2023-07-09 02:26:34 +08:00
version: "3"
services:
todo-service:
build:
context: .
dockerfile: ./Dockerfile
image: todo-service:latest
restart: always
volumes:
- .:/app
environment:
TZ: "Asia/Shanghai"
tty: true
2023-07-09 02:43:14 +08:00
working_dir: /app
command: ["python3", "test.py"]
2023-07-09 02:26:34 +08:00