remove authentik, upgrade to php8.3
This commit is contained in:
parent
cbf0de0a98
commit
223d08086f
|
@ -122,6 +122,15 @@ services:
|
||||||
- /srv/docker/volume/grafana/grafana.ini:/etc/grafana/grafana.ini
|
- /srv/docker/volume/grafana/grafana.ini:/etc/grafana/grafana.ini
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 1G
|
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:
|
loki:
|
||||||
image: grafana/loki
|
image: grafana/loki
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -134,33 +143,6 @@ services:
|
||||||
env_file: env/miniflux
|
env_file: env/miniflux
|
||||||
restart: always
|
restart: always
|
||||||
mem_limit: 128M
|
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:
|
pgbouncer:
|
||||||
image: pgbouncer-alpine
|
image: pgbouncer-alpine
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -3,4 +3,5 @@
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
docker-compose pull --ignore-pull-failures
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
|
Loading…
Reference in a new issue