Compare commits
No commits in common. "c6314c516d5f7d6c8372fc559771b78bd4cacac8" and "223d08086f9dbecc1c08d500b5ab1be883a026d4" have entirely different histories.
c6314c516d
...
223d08086f
|
@ -1,8 +1,14 @@
|
||||||
|
version: "3.9"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
ssl:
|
ssl:
|
||||||
external: true
|
external: true
|
||||||
victoria-metrics:
|
victoria-metrics:
|
||||||
external: true
|
external: true
|
||||||
|
haproxy-socket:
|
||||||
|
external: true
|
||||||
|
postgres-13:
|
||||||
|
external: true
|
||||||
postgres-15:
|
postgres-15:
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
|
@ -41,6 +47,23 @@ services:
|
||||||
default:
|
default:
|
||||||
ipv6_address: 2a01:e0a:5b7:35f1::5432
|
ipv6_address: 2a01:e0a:5b7:35f1::5432
|
||||||
restart: always
|
restart: always
|
||||||
|
haproxy:
|
||||||
|
image: haproxytech/haproxy-alpine-quic:2.8
|
||||||
|
volumes:
|
||||||
|
- ssl:/ssl:rw
|
||||||
|
- /etc/haproxy:/usr/local/etc/haproxy:ro
|
||||||
|
- /etc/haproxy:/etc/haproxy:ro
|
||||||
|
- haproxy-socket:/var/lib/haproxy:rw
|
||||||
|
ports:
|
||||||
|
- 443:443
|
||||||
|
- 443:443/udp
|
||||||
|
- 80:80
|
||||||
|
restart: always
|
||||||
|
mem_limit: 512M
|
||||||
|
dns: fd00::3:2
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
ipv6_address: 2a01:e0a:5b7:35f1::443
|
||||||
vault:
|
vault:
|
||||||
image: hashicorp/vault
|
image: hashicorp/vault
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -52,22 +75,15 @@ services:
|
||||||
- IPC_LOCK
|
- IPC_LOCK
|
||||||
command: vault server -config /vault/config
|
command: vault server -config /vault/config
|
||||||
caddy:
|
caddy:
|
||||||
image: caddy-alpine
|
image: caddy:alpine
|
||||||
volumes:
|
volumes:
|
||||||
- ssl:/etc/dehydrated:ro
|
- ssl:/etc/dehydrated:ro
|
||||||
- /etc/caddy:/etc/caddy
|
- /etc/caddy:/etc/caddy
|
||||||
- /srv/www:/srv/www
|
- /srv/www:/srv/www
|
||||||
- /srv/www/nfs/kiwi/Videos:/srv/www/nfs/kiwi/Videos:ro
|
- /srv/www/nfs/kiwi/Videos:/srv/www/nfs/kiwi/Videos:ro
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
|
||||||
- 443:443
|
|
||||||
- 443:443/udp
|
|
||||||
- 80:80
|
|
||||||
mem_limit: 128M
|
mem_limit: 128M
|
||||||
command: caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|
dns: 192.168.3.2
|
||||||
networks:
|
|
||||||
default:
|
|
||||||
ipv6_address: 2a01:e0a:5b7:35f1::443
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -245,7 +261,7 @@ services:
|
||||||
default:
|
default:
|
||||||
ipv6_address: 2a01:e0a:5b7:35f1::853
|
ipv6_address: 2a01:e0a:5b7:35f1::853
|
||||||
gitea:
|
gitea:
|
||||||
image: codeberg.org/forgejo/forgejo:7
|
image: gitea/gitea:dev
|
||||||
volumes:
|
volumes:
|
||||||
- /srv/docker/volume/gitea/data:/data
|
- /srv/docker/volume/gitea/data:/data
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -295,7 +311,7 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
command: /bin/syncv3
|
command: /bin/syncv3
|
||||||
mem_limit: 1G
|
mem_limit: 1G
|
||||||
cpus: 1
|
cpus: 0.5
|
||||||
dendrite:
|
dendrite:
|
||||||
image: matrixdotorg/dendrite-monolith:latest
|
image: matrixdotorg/dendrite-monolith:latest
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -306,13 +322,13 @@ services:
|
||||||
- /srv/docker/volume/dendrite/jetstream:/var/dendrite/jetstream
|
- /srv/docker/volume/dendrite/jetstream:/var/dendrite/jetstream
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 1G
|
mem_limit: 1G
|
||||||
cpus: 1
|
cpus: 0.5
|
||||||
matrix-alertmanager:
|
matrix-alertmanager:
|
||||||
image: jaywink/matrix-alertmanager:latest
|
image: jaywink/matrix-alertmanager:latest
|
||||||
env_file: env/matrix-alertmanager
|
env_file: env/matrix-alertmanager
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 1G
|
mem_limit: 1G
|
||||||
cpus: 1
|
cpus: 0.5
|
||||||
uptime-kuma:
|
uptime-kuma:
|
||||||
image: louislam/uptime-kuma
|
image: louislam/uptime-kuma
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -320,11 +336,20 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 2G
|
mem_limit: 2G
|
||||||
cpus: 1
|
cpus: 1
|
||||||
openspeedtest:
|
vikunja-api:
|
||||||
environment:
|
image: vikunja/api:latest
|
||||||
- ENABLE_LETSENCRYPT=False
|
env_file: env/vikunja-api
|
||||||
- DOMAIN_NAME=speedtest.verry.org
|
volumes:
|
||||||
image: "openspeedtest/latest"
|
- /srv/docker/volume/vikunja/api/files:/app/vikunja/files:rw
|
||||||
|
restart: always
|
||||||
|
mem_limit: 1G
|
||||||
|
cpus: 0.5
|
||||||
|
vikunja-frontend:
|
||||||
|
image: vikunja/frontend
|
||||||
|
env_file: env/vikunja-frontend
|
||||||
|
restart: always
|
||||||
|
mem_limit: 512M
|
||||||
|
cpus: 0.5
|
||||||
geoipupdate:
|
geoipupdate:
|
||||||
image: "maxmindinc/geoipupdate:latest"
|
image: "maxmindinc/geoipupdate:latest"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
#docker-compose pull --ignore-pull-failures
|
docker-compose pull --ignore-pull-failures
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
|
Loading…
Reference in a new issue