-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
175 lines (167 loc) · 3.9 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
services:
freshrss:
image: lscr.io/linuxserver/freshrss:1.24.1
container_name: freshrss
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
volumes:
- ./volumes/freshrss:/config
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
rss-bridge:
image: rssbridge/rss-bridge:sha-c0e37bc
container_name: rss-bridge
volumes:
- ./volumes/rss-bridge:/config
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
instagram-feed-generator:
build:
context: ./projects/instagram-feed-generator
container_name: instagram-feed-generator
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
rss-nginx:
image: nginx:stable-alpine3.20
container_name: rss-nginx
volumes:
- ./nginx/rss.conf:/etc/nginx/nginx.conf:ro
ports:
- 8000:80
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
vaultwarden:
image: vaultwarden/server:1.31.0
container_name: vaultwarden
environment:
- INVITATIONS_ALLOWED=true
- PGID=${PGID}
- PUID=${PUID}
- SIGNUPS_ALLOWED=false # Activate this with "true", create an account and then set it back to "false"
- TZ=${TZ}
- WEBSOCKET_ENABLED=true
volumes:
- ./volumes/vaultwarden:/data
ports:
- "8100:80"
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
ports:
- 9100:3001
volumes:
- /etc/localtime:/etc/localtime:ro
- ./volumes/uptime-kuma:/app/data
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
dockerproxy:
image: ghcr.io/tecnativa/docker-socket-proxy:0.2.0
container_name: dockerproxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- CONTAINERS=1
- POST=0
restart: unless-stopped
healthcheck:
test: wget --spider http://localhost:2375/version || exit 1
interval: "29s"
timeout: "5s"
retries: 3
start_period: "21s"
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
cloudflared:
image: cloudflare/cloudflared:2024.6.1
container_name: cloudflared
command: tunnel --no-autoupdate run --token ${CLOUDFLARE_TUNNEL_TOKEN}
restart: unless-stopped
deploy:
resources:
limits:
cpus: 0.50
memory: 128M
reservations:
cpus: 0.25
memory: 64M
# TODO: implement backup service
# backups:
# build:
# context: .
# dockerfile: backups.dockerfile
# args:
# - MEGA_SESSION=${MEGA_SESSION}
# container_name: backups
# environment:
# - PGID=${PGID}
# - PUID=${PUID}
# - TZ=${TZ}
# volumes:
# - ./backups:/backups
# - ./volumes:/volumes
# - ./backups-encryption.key:/backups-encryption.key
# restart: unless-stopped
# deploy:
# resources:
# limits:
# cpus: 0.50
# memory: 128M
# reservations:
# cpus: 0.25
# memory: 64M