mirror of Walter-Sparrow / lunar-tear
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add restart policy to Docker services

+3
+3
server/docker-compose.yaml
··· 4 4 server: 5 5 build: . 6 6 image: kretts/lunar-tear:latest 7 + restart: unless-stopped 7 8 environment: 8 9 LUNAR_LISTEN: 0.0.0.0:8003 9 10 LUNAR_PUBLIC_ADDR: 127.0.0.1:8003 ··· 23 24 context: . 24 25 dockerfile: Dockerfile.cdn 25 26 image: kretts/octo-cdn:latest 27 + restart: unless-stopped 26 28 command: ["--listen", "0.0.0.0:8080", "--public-addr", "10.0.2.2:8080"] 27 29 volumes: 28 30 - ./assets:/opt/octo-cdn/assets ··· 34 36 context: . 35 37 dockerfile: Dockerfile.auth 36 38 image: kretts/auth-server:latest 39 + restart: unless-stopped 37 40 command: ["--listen", "0.0.0.0:3000", "--db", "db/auth.db"] 38 41 volumes: 39 42 - ./db:/opt/auth-server/db