Compare commits
No commits in common. "4aca41125ec29085cbce0600f9dd4b86b2186a5b" and "63e2fd5a52054eee6fe1542b00788b38ca1d527a" have entirely different histories.
4aca41125e
...
63e2fd5a52
2 changed files with 6 additions and 8 deletions
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
- name: Create authentik network
|
||||
- name: Create authentik networks
|
||||
become: true
|
||||
community.docker.docker_network:
|
||||
name: authentik
|
||||
name: "{{ item }}"
|
||||
loop: ["authentik", "authentik-redis"]
|
||||
- name: Create authnetik docker volumes
|
||||
become: true
|
||||
community.docker.docker_volume:
|
||||
|
@ -15,7 +16,7 @@
|
|||
image: redis:7.4-bookworm
|
||||
command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"]
|
||||
networks:
|
||||
- name: authentik
|
||||
- name: authentik-redis
|
||||
volumes:
|
||||
- authentik-redis:/data
|
||||
restart_policy: unless-stopped
|
||||
|
@ -39,9 +40,9 @@
|
|||
command: ["server"]
|
||||
networks:
|
||||
- name: authentik
|
||||
- name: authentik-redis
|
||||
- name: postgresql
|
||||
- name: haproxy
|
||||
- name: monitoring
|
||||
user: root
|
||||
volumes:
|
||||
- authentik-media:/media
|
||||
|
@ -68,6 +69,7 @@
|
|||
command: ["worker"]
|
||||
networks:
|
||||
- name: authentik
|
||||
- name: authentik-redis
|
||||
- name: postgresql
|
||||
volumes:
|
||||
- authentik-media:/media
|
||||
|
@ -91,7 +93,6 @@
|
|||
networks:
|
||||
- name: authentik
|
||||
- name: haproxy
|
||||
- name: monitoring
|
||||
volumes:
|
||||
- authentik-certs:/certs
|
||||
- /etc/letsencrypt/live/comfycamp.space/fullchain.pem:/certs/comfycamp.space/fullchain.pem:ro
|
||||
|
|
|
@ -14,6 +14,3 @@ scrape_configs:
|
|||
scheme: http
|
||||
static_configs:
|
||||
- targets: ["minio:9000"]
|
||||
- job_name: authentik
|
||||
static_configs:
|
||||
- targets: ["authentik-1:9300"]
|
||||
|
|
Loading…
Reference in a new issue