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
|
2023-04-07 03:03:18 +02:00
|
|
|
restart: always
|
2023-04-03 21:09:34 +02:00
|
|
|
environment:
|
|
|
|
- RUST_LOG=debug
|
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
|
2023-04-07 03:03:18 +02:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
|
|
|
interval: 1m30s
|
|
|
|
timeout: 30s
|
|
|
|
retries: 3
|
|
|
|
start_period: 40s
|
|
|
|
|