You've already forked Curso-lenguaje-python
13 lines
318 B
YAML
13 lines
318 B
YAML
services:
|
|
clima-app:
|
|
build: .
|
|
container_name: clima-app
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pgrep -f bot.py || exit 1"]
|
|
interval: 10s
|
|
retries: 3
|
|
start_period: 5s |