larc r17

18 lines ยท 462 B Raw
1 services:
2 larcs:
3 #build: .
4 image: code.wejust.rest/lain/larcs:latest
5 container_name: larcs
6 ports:
7 - "8330:8080"
8 volumes:
9 - ./conf/larcs.yaml:/etc/larcs/config.yaml:ro
10 - ./conf/htpasswd:/etc/larcs/htpasswd:ro
11 - ./larc-repos:/var/lib/larcs/repos
12 restart: unless-stopped
13 healthcheck:
14 test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080/"]
15 interval: 30s
16 timeout: 3s
17 retries: 3
18