\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /opt/authentik/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //opt/authentik/docker-compose.yml-bak |
version: "3.8"
services:
redis:
image: redis:7
restart: unless-stopped
command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"]
volumes:
- ./redisdata:/data
server:
image: ghcr.io/goauthentik/server:latest
restart: unless-stopped
command: server
env_file:
- .env
environment:
AUTHENTIK_POSTGRESQL__HOST: host.docker.internal
AUTHENTIK_POSTGRESQL__PORT: "5432"
AUTHENTIK_POSTGRESQL__USER: ${PG_USER}
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB}
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
AUTHENTIK_REDIS__HOST: redis
AUTHENTIK_REDIS__PORT: "6379"
depends_on:
- redis
ports:
- "9000:9000"
- "9443:9443"
volumes:
- ./media:/media
- ./custom-templates:/templates
extra_hosts:
- "host.docker.internal:host-gateway"
worker:
image: ghcr.io/goauthentik/server:latest
restart: unless-stopped
command: worker
env_file:
- .env
environment:
AUTHENTIK_POSTGRESQL__HOST: host.docker.internal
AUTHENTIK_POSTGRESQL__PORT: "5432"
AUTHENTIK_POSTGRESQL__USER: ${PG_USER}
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB}
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
AUTHENTIK_REDIS__HOST: redis
AUTHENTIK_REDIS__PORT: "6379"
depends_on:
- redis
volumes:
- ./media:/media
- ./custom-templates:/templates
extra_hosts:
- "host.docker.internal:host-gateway"