this repo has no description
1services:
2 redis:
3 image: redis:alpine
4 restart: always
5 volumes:
6 - ./data/redis:/data
7 healthcheck:
8 test: ["CMD", "redis-cli", "ping", "|", "grep", "PONG"]
9 interval: 1s
10 timeout: 5s
11 retries: 5
12
13 knot:
14 build:
15 context: ./repos/knot-docker/
16 args:
17 UID: 1000
18 GID: 1000
19 restart: always
20 ports:
21 - "2588:5555"
22 - "2222:22"
23 volumes:
24 - ./keys:/etc/ssh/keys
25 - ./repositories:/home/git/repositories
26 - ./server:/app
27 env_file:
28 - ./envs/knot
29
30 appview:
31 build:
32 context: .
33 dockerfile: docker/appview/Dockerfile
34 target: appview
35 restart: always
36 ports:
37 - "2589:3000"
38 volumes:
39 - ./data/appview:/data
40 env_file:
41 - ./envs/appview
42 depends_on:
43 redis:
44 condition: service_healthy