remove authentik, upgrade to php8.3

This commit is contained in:
Yann Verry 2024-01-09 11:57:45 +01:00
parent cbf0de0a98
commit 223d08086f
2 changed files with 10 additions and 27 deletions

View file

@ -122,6 +122,15 @@ services:
- /srv/docker/volume/grafana/grafana.ini:/etc/grafana/grafana.ini
restart: always
mem_limit: 1G
php:
image: php83-alpine
extra_hosts:
- "mail.verry.org:192.168.42.3"
dns: 192.168.3.2
command: php-fpm
volumes:
- /srv/www:/srv/www
restart: always
loki:
image: grafana/loki
volumes:
@ -134,33 +143,6 @@ services:
env_file: env/miniflux
restart: always
mem_limit: 128M
php:
image: php82-alpine
extra_hosts:
- "mail.verry.org:192.168.42.3"
dns: 192.168.3.2
volumes:
- /srv/www:/srv/www
restart: always
authentik-server:
image: ghcr.io/goauthentik/server:latest
restart: unless-stopped
command: server
volumes:
- /srv/docker/volume/authentik/media:/media
- /srv/docker/volume/authentik/custom-templates:/templates
env_file:
- env/authentik-server
authentik-worker:
image: ghcr.io/goauthentik/server:latest
command: worker
volumes:
- /srv/docker/volume/authentik/certs:/certs
- /srv/docker/volume/authentik/media:/media
- /srv/docker/volume/authentik/custom-templates:/templates
restart: unless-stopped
env_file:
- env/authentik-worker
pgbouncer:
image: pgbouncer-alpine
volumes:

View file

@ -3,4 +3,5 @@
cd "$(dirname "$0")"
docker-compose pull --ignore-pull-failures
docker-compose up -d