libreddit/docker-compose.yml

19 lines
336 B
YAML

version: "3.3"
services:
web:
# build: .
# container_name: "libreddit"
image: lamacchinadesiderante/libreddit:latest
restart: always
ports:
- 8080:8080
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:8080/settings"]
interval: 5m
timeout: 3s