bitebuds-deployment/docker-compose.yml

21 lines
409 B
YAML
Raw Normal View History

2023-04-03 14:26:42 +02:00
version: '3'
services:
2023-04-03 14:44:52 +02:00
bitebuds:
2023-04-03 22:16:58 +02:00
image: docker.io/kasperhermansen/bitebuds:1680553012
restart: always
2023-04-03 21:09:34 +02:00
environment:
2024-05-19 20:49:16 +02:00
- RUST_LOG=info
2023-04-03 14:26:42 +02:00
ports:
2023-04-03 14:55:31 +02:00
- 10080:3000
2023-04-03 14:39:36 +02:00
volumes:
2023-04-03 21:09:34 +02:00
- ./.ssh:/root/.ssh
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 1m30s
timeout: 30s
retries: 3
start_period: 40s
2024-05-19 20:49:16 +02:00
labels:
logging: promtail