forked from picosh/pico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
117 lines (117 loc) · 2.21 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
version: "3.8"
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
lists-web:
image: ghcr.io/picosh/pico/lists-web:latest
restart: always
profiles:
- lists
- services
- all
lists-ssh:
image: ghcr.io/picosh/pico/lists-ssh:latest
restart: always
profiles:
- lists
- services
- all
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
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:
- donotrun
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
auth-web:
image: ghcr.io/picosh/pico/auth-web:latest
restart: always
profiles:
- auth
- services
- all
bouncer:
image: ghcr.io/picosh/pico/bouncer:main
restart: always
profiles:
- bouncer
- services
- all