mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-12 01:56:43 -05:00
Add Authentik entry to meta.json (#225)
* Add Authentik entry to meta.json - Introduced Authentik, an open-source Identity Provider for authentication and authorization, with detailed description, version, and relevant links. - Reformatted tag lists for consistency across entries. * Add GitLab CE entry to meta.json - Introduced GitLab Community Edition with a detailed description, logo, and relevant links. - Reformatted tag lists for consistency across entries.
This commit is contained in:
committed by
GitHub
parent
f5a50d2e12
commit
1723abe711
1
blueprints/authentik/authentik.svg
Normal file
1
blueprints/authentik/authentik.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 5.0 KiB |
92
blueprints/authentik/docker-compose.yml
Normal file
92
blueprints/authentik/docker-compose.yml
Normal file
@@ -0,0 +1,92 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
postgresql:
|
||||
image: docker.io/library/postgres:16-alpine
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
||||
start_period: 20s
|
||||
interval: 30s
|
||||
retries: 5
|
||||
timeout: 5s
|
||||
volumes:
|
||||
- database:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${PG_PASS}
|
||||
POSTGRES_USER: ${PG_USER}
|
||||
POSTGRES_DB: ${PG_DB}
|
||||
expose:
|
||||
- 5432
|
||||
|
||||
redis:
|
||||
image: docker.io/library/redis:alpine
|
||||
command: --save 60 1 --loglevel warning
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
||||
start_period: 20s
|
||||
interval: 30s
|
||||
retries: 5
|
||||
timeout: 3s
|
||||
volumes:
|
||||
- redis:/data
|
||||
expose:
|
||||
- 6379
|
||||
|
||||
server:
|
||||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.6.3}
|
||||
restart: unless-stopped
|
||||
command: server
|
||||
environment:
|
||||
AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY}
|
||||
AUTHENTIK_REDIS__HOST: redis
|
||||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER}
|
||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB}
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||||
volumes:
|
||||
- media:/media
|
||||
- custom-templates:/templates
|
||||
expose:
|
||||
- 9000
|
||||
- 9443
|
||||
depends_on:
|
||||
postgresql:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
|
||||
worker:
|
||||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.6.3}
|
||||
restart: unless-stopped
|
||||
command: worker
|
||||
environment:
|
||||
AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY}
|
||||
AUTHENTIK_REDIS__HOST: redis
|
||||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER}
|
||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB}
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||||
user: root
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- media:/media
|
||||
- certs:/certs
|
||||
- custom-templates:/templates
|
||||
depends_on:
|
||||
postgresql:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
|
||||
volumes:
|
||||
database:
|
||||
driver: local
|
||||
redis:
|
||||
driver: local
|
||||
media:
|
||||
driver: local
|
||||
certs:
|
||||
driver: local
|
||||
custom-templates:
|
||||
driver: local
|
||||
26
blueprints/authentik/template.toml
Normal file
26
blueprints/authentik/template.toml
Normal file
@@ -0,0 +1,26 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
main_domain_1 = "${domain}"
|
||||
pg_user = "authentik"
|
||||
pg_db = "authentik"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "server"
|
||||
port = 9000
|
||||
host = "${main_domain}"
|
||||
path = "/"
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "server"
|
||||
port = 9443
|
||||
host = "${main_domain_1}"
|
||||
path = "/"
|
||||
|
||||
[config.env]
|
||||
PG_USER = "${pg_user}"
|
||||
PG_DB = "${pg_db}"
|
||||
PG_PASS = "${password:32}" # Password for PostgreSQL authentication
|
||||
AUTHENTIK_SECRET_KEY = "${password:64}" # Secret key for Authentik authentication
|
||||
AUTHENTIK_IMAGE = "ghcr.io/goauthentik/server"
|
||||
AUTHENTIK_TAG = "2025.6.3"
|
||||
40
meta.json
40
meta.json
@@ -12,6 +12,27 @@
|
||||
"logo": "autobase.svg",
|
||||
"tags": ["database", "postgres", "self-hosted", "server"]
|
||||
},
|
||||
{
|
||||
"id": "authentik",
|
||||
"name": "Authentik",
|
||||
"version": "2025.6.3",
|
||||
"description": "Authentik is an open-source Identity Provider for authentication and authorization. It provides a comprehensive solution for managing user authentication, authorization, and identity federation with support for SAML, OAuth2, OIDC, and more.",
|
||||
"links": {
|
||||
"github": "https://github.com/goauthentik/authentik",
|
||||
"website": "https://goauthentik.io/",
|
||||
"docs": "https://goauthentik.io/docs/"
|
||||
},
|
||||
"logo": "authentik.svg",
|
||||
"tags": [
|
||||
"authentication",
|
||||
"identity",
|
||||
"sso",
|
||||
"oidc",
|
||||
"saml",
|
||||
"oauth2",
|
||||
"self-hosted"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "freescout",
|
||||
"name": "FreeScout",
|
||||
@@ -230,6 +251,19 @@
|
||||
},
|
||||
"tags": ["self-hosted", "storage"]
|
||||
},
|
||||
{
|
||||
"id": "gitlab-ce",
|
||||
"name": "GitLab CE",
|
||||
"version": "latest",
|
||||
"description": "GitLab Community Edition is a free and open source platform for managing Git repositories, CI/CD pipelines, and project management.",
|
||||
"logo": "gitlab-ce.svg",
|
||||
"links": {
|
||||
"github": "https://gitlab.com/gitlab-org/gitlab-ce",
|
||||
"website": "https://gitlab.com/",
|
||||
"docs": "https://docs.gitlab.com/ee/"
|
||||
},
|
||||
"tags": ["git", "ci-cd", "version-control", "project-management"]
|
||||
},
|
||||
{
|
||||
"id": "ghost",
|
||||
"name": "Ghost",
|
||||
@@ -2679,11 +2713,7 @@
|
||||
"website": "https://www.filestash.app/",
|
||||
"docs": "https://www.filestash.app/docs/"
|
||||
},
|
||||
"tags": [
|
||||
"file-manager",
|
||||
"document-editor",
|
||||
"self-hosted"
|
||||
]
|
||||
"tags": ["file-manager", "document-editor", "self-hosted"]
|
||||
},
|
||||
{
|
||||
"id": "mazanoke",
|
||||
|
||||
Reference in New Issue
Block a user