Sync Gitea and Authentik configs with production
Some checks failed
Deploy Stacks / deploy-prod (push) Failing after 1s
Deploy Stacks / deploy-dev (push) Has been cancelled

- Gitea: Add port 3001:3000 for external access
- Gitea: Add GITEA_RUNNER_LABELS=ubuntu-prod:host for runner
- Authentik: Add port 9000:9000 for external access

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-21 10:58:31 -05:00
parent e2372fd67a
commit 244794d15f
2 changed files with 4 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ services:
image: ghcr.io/goauthentik/server:latest
container_name: authentik-server
restart: unless-stopped
ports:
- "9000:9000"
command: server
environment:
AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY}

View File

@@ -10,6 +10,7 @@ services:
- "22"
ports:
- "2245:22"
- "3001:3000"
depends_on:
- db
environment:
@@ -52,6 +53,7 @@ services:
environment:
- GITEA_INSTANCE_URL=https://gitea.${DOMAIN}
- GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_TOKEN}
- GITEA_RUNNER_LABELS=ubuntu-prod:host
networks:
web: