-
Notifications
You must be signed in to change notification settings - Fork 28
/
docker-compose.yml
150 lines (150 loc) · 2.96 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
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
registry:
image: registry
restart: always
profiles:
- imgs
- services
- all
environment:
REGISTRY_STORAGE_S3_ACCESSKEY: ${MINIO_ROOT_USER}
REGISTRY_STORAGE_S3_SECRETKEY: ${MINIO_ROOT_PASSWORD}
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
imgs-web:
image: ghcr.io/picosh/pico/imgs-web:latest
restart: always
profiles:
- imgs
- services
- all
imgs-ssh:
image: ghcr.io/picosh/pico/imgs-ssh:latest
restart: always
profiles:
- imgs
- 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