todo/docker-compose.yml

16 lines
262 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