Docker: use default networks from compose

This commit is contained in:
Marko Korhonen 2025-06-09 23:18:30 -05:00
parent fe591b0db4
commit 946e2dae73
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
5 changed files with 13 additions and 22 deletions

View file

@ -9,7 +9,7 @@ services:
image: redis:alpine
container_name: authentik-redis
networks:
- authentik
- default
restart: unless-stopped
volumes:
- redis:/data
@ -33,7 +33,7 @@ services:
env_file:
- .env
networks:
- authentik
- default
- postgres
- proxy
worker:
@ -51,14 +51,14 @@ services:
env_file:
- .env
networks:
- authentik
- default
- postgres
geoipupdate:
image: maxmindinc/geoipupdate
container_name: authentik-geoipupdate
restart: unless-stopped
networks:
- authentik
- default
volumes:
- geoip:/usr/share/GeoIP
env_file:
@ -67,8 +67,6 @@ services:
GEOIPUPDATE_EDITION_IDS: GeoLite2-City
GEOIPUPDATE_FREQUENCY: '8'
networks:
authentik:
external: true
postgres:
external: true
proxy: