Files
todo/docker-compose.yml
BryantHe 5b6090e88d
Some checks failed
continuous-integration/drone/push Build is failing
update file
2023-07-10 12:54:22 +08:00

24 lines
382 B
YAML

version: "3"
services:
todo-service:
build:
context: .
dockerfile: ./Dockerfile
image: todo-service:latest
restart: always
volumes:
- .:/app
environment:
TZ: "Asia/Shanghai"
tty: true
networks:
- todo-service
ports:
- "5010:5000"
networks:
todo-service:
driver: bridge