21 lines
409 B
YAML
21 lines
409 B
YAML
version: '3'
|
|
services:
|
|
bitebuds:
|
|
image: docker.io/kasperhermansen/bitebuds:1680828894
|
|
restart: always
|
|
environment:
|
|
- RUST_LOG=info
|
|
ports:
|
|
- 10080:3000
|
|
volumes:
|
|
- ./.ssh:/root/.ssh
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
|
interval: 1m30s
|
|
timeout: 30s
|
|
retries: 3
|
|
start_period: 40s
|
|
labels:
|
|
logging: promtail
|
|
|