libreddit/docker-compose.yml

13 lines
248 B
YAML
Raw Normal View History

2021-03-31 22:03:18 +02:00
version: "3.8"
services:
web:
build: .
restart: always
container_name: "libreddit"
ports:
- 8080:8080
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/settings"]
interval: 5m
timeout: 3s