Compare commits

...

4 Commits

Author SHA1 Message Date
f93a21dc3a add smtp info to heyforms 2024-11-25 10:36:46 -07:00
c95bdc098d bump authentik verion 2024-11-25 10:36:12 -07:00
fb1ae448aa Bump audiobookshelf version 2024-11-25 10:35:58 -07:00
32694e8feb add action runner for gita 2024-11-25 10:35:26 -07:00
5 changed files with 31 additions and 9 deletions

View File

@ -4,6 +4,7 @@
state: directory
loop:
- /opt/stacks/gitea
- /opt/stacks/gitea/data
- name: Template out the compose file
ansible.builtin.template:

View File

@ -1,6 +1,6 @@
services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:2.16.2
image: ghcr.io/advplyr/audiobookshelf:2.17.2
volumes:
- audiobooks:/audiobooks
- podcasts:/podcasts

View File

@ -31,7 +31,7 @@ services:
volumes:
- trout:/data
server:
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.10.2}
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.10.4}
restart: unless-stopped
command: server
environment:
@ -52,7 +52,7 @@ services:
- postgresql
- trout
worker:
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.10.2}
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.10.4}
restart: unless-stopped
command: worker
environment:

View File

@ -22,6 +22,21 @@ services:
- 222:22
extra_hosts:
- 'auth.thesatelliteoflove.com:172.20.0.5'
runner:
image: gitea/act_runner:nightly
depends_on:
- server
environment:
- CONFIG_FILE=/config.yaml
- GITEA_INSTANCE_URL=http://gitea:3000
- GITEA_RUNNER_REGISTRATION_TOKEN={{ gitea_runner_key }}
- GITEA_RUNNER_NAME=runner_1
- GITEA_RUNNER_LABELS=docker
volumes:
- ./runner-config.yaml:/config.yaml
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
- /opt/stacks/caddy/site:/sites
volumes:
gitea:
driver: local

View File

@ -9,12 +9,18 @@ services:
- mongo
- keydb
environment:
APP_HOMEPAGE_URL: http://forms.nerder.land
SESSION_KEY: {{ heyform_session_key }}
FORM_ENCRYPTION_KEY: {{ heyform_encryption_key }}
MONGO_URI: 'mongodb://mongo:27017/heyform'
REDIS_HOST: keydb
REDIS_PORT: 6379
- APP_HOMEPAGE_URL=http://forms.nerder.land
- SESSION_KEY={{ heyform_session_key }}
- FORM_ENCRYPTION_KEY={{ heyform_encryption_key }}
- MONGO_URI='mongodb://mongo:27017/heyform'
- REDIS_HOST=keydb
- REDIS_PORT=6379
- SMTP_FROM=nerderland@updates.thesatelliteoflove.com
- SMTP_HOST=smtp.resend.com
- SMTP_PORT=465
- SMTP_USER=resend
- SMTP_PASSWORD={{ resend_key }}
- SMTP_SECURE=true
mongo:
image: percona/percona-server-mongodb:4.4