-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdocker-compose.yml
126 lines (126 loc) · 2.47 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
services:
postgres:
image: postgres:14
restart: always
profiles:
- db
- all
minio:
image: quay.io/minio/minio
command: server /data --console-address ":9001"
restart: always
profiles:
- db
- all
imgproxy:
image: darthsim/imgproxy:latest
restart: always
profiles:
- db
- all
pipemgr:
image: ghcr.io/picosh/pipemgr:latest
command: /pipemgr -command "pub metric-drain -b=false"
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 2s
timeout: 5s
retries: 5
start_period: 1s
profiles:
- all
- log
pastes-web:
image: ghcr.io/picosh/pico/pastes-web:latest
restart: always
profiles:
- pastes
- services
- all
pastes-ssh:
image: ghcr.io/picosh/pico/pastes-ssh:latest
restart: always
profiles:
- pastes
- services
- all
pipe-web:
image: ghcr.io/picosh/pico/pipe-web:latest
restart: always
profiles:
- pipe
- services
- all
pipe-ssh:
image: ghcr.io/picosh/pico/pipe-ssh:latest
restart: always
profiles:
- pipe
- services
- all
prose-web:
image: ghcr.io/picosh/pico/prose-web:latest
restart: always
profiles:
- prose
- services
- all
prose-ssh:
image: ghcr.io/picosh/pico/prose-ssh:latest
restart: always
profiles:
- prose
- services
- all
pgs-web:
image: ghcr.io/picosh/pico/pgs-web:latest
restart: always
profiles:
- pgs
- services
- all
pgs-ssh:
image: ghcr.io/picosh/pico/pgs-ssh:latest
restart: always
profiles:
- pgs
- services
- all
feeds-web:
image: ghcr.io/picosh/pico/feeds-web:latest
restart: always
profiles:
- feeds
- services
- all
feeds-ssh:
image: ghcr.io/picosh/pico/feeds-ssh:latest
restart: always
profiles:
- feeds
- services
- all
pico-ssh:
image: ghcr.io/picosh/pico/pico-ssh:latest
restart: always
profiles:
- pico
- services
- all
auth-web:
image: ghcr.io/picosh/pico/auth-web:latest
restart: always
profiles:
- auth
- services
- all
bouncer:
image: ghcr.io/picosh/pico/bouncer:latest
restart: always
profiles:
- bouncer
- services
- all