Compare commits
40 Commits
Author | SHA1 | Date | |
---|---|---|---|
9bfd87f256
|
|||
20a4cf4da4
|
|||
60ce6ca758
|
|||
a1039eaa45
|
|||
01ff782b14
|
|||
bc61a40771
|
|||
94ddaf98f0
|
|||
23f5f560b6
|
|||
a8f74baa53
|
|||
836183ad55
|
|||
0deea90113
|
|||
a5108c1bb6
|
|||
a278d5a438
|
|||
6ff3590514
|
|||
801b4b2cbf
|
|||
5ea018e04c
|
|||
842492c30d
|
|||
249f2e8926
|
|||
0f75b2a4aa
|
|||
d934993817
|
|||
4c65b70f97
|
|||
fe5ebb9531
|
|||
2d5b6a9357
|
|||
563e261ef3
|
|||
51a466a150
|
|||
7b9fed4a11
|
|||
25be7155e0
|
|||
950d017889
|
|||
31639291f1
|
|||
127a128a73
|
|||
6bf38f8273
|
|||
266057d11c
|
|||
afa91a622b
|
|||
d92262798a
|
|||
4b13c448d0
|
|||
a9a988ec69
|
|||
d9de07c8f8
|
|||
c51dd4c142
|
|||
bfd6449a71
|
|||
7ebde915db
|
@ -1,13 +1,13 @@
|
||||
namespace: finallycoffee
|
||||
name: services
|
||||
version: 0.1.8
|
||||
version: "0.1.13"
|
||||
readme: README.md
|
||||
authors:
|
||||
- transcaffeine <transcaffeine@finally.coffee>
|
||||
description: Various ansible roles useful for automating infrastructure
|
||||
dependencies:
|
||||
"community.crypto": "^2.0.0"
|
||||
"community.docker": "^3.0.0"
|
||||
"community.crypto": "^2.22.0"
|
||||
"community.docker": "^4.0.0"
|
||||
license_file: LICENSE.md
|
||||
build_ignore:
|
||||
- '*.tar.gz'
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
authelia_version: "4.38.16"
|
||||
authelia_version: "4.38.18"
|
||||
authelia_user: authelia
|
||||
authelia_base_dir: /opt/authelia
|
||||
authelia_domain: authelia.example.org
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
ghost_domain: ~
|
||||
ghost_version: "5.96.0"
|
||||
ghost_version: "5.109.3"
|
||||
ghost_user: ghost
|
||||
ghost_user_group: ghost
|
||||
ghost_base_path: /opt/ghost
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
gitea_version: "1.22.3"
|
||||
gitea_version: "1.23.3"
|
||||
gitea_user: git
|
||||
gitea_run_user: "{{ gitea_user }}"
|
||||
gitea_base_path: "/opt/gitea"
|
||||
@ -32,6 +32,7 @@ gitea_container_extra_labels: {}
|
||||
gitea_container_extra_ports: []
|
||||
gitea_container_extra_volumes: []
|
||||
gitea_container_state: started
|
||||
gitea_container_user: ~
|
||||
|
||||
# container defaults
|
||||
gitea_container_base_volumes:
|
||||
|
@ -1,5 +1,4 @@
|
||||
---
|
||||
|
||||
- name: Ensure gitea user '{{ gitea_user }}' is present
|
||||
ansible.builtin.user:
|
||||
name: "{{ gitea_user }}"
|
||||
@ -75,6 +74,7 @@
|
||||
published_ports: "{{ gitea_container_ports }}"
|
||||
restart_policy: "{{ gitea_container_restart_policy }}"
|
||||
state: "{{ gitea_container_state }}"
|
||||
user: "{{ gitea_container_user | default(omit, true) }}"
|
||||
|
||||
- name: Ensure given configuration is set in the config file
|
||||
ansible.builtin.ini_file:
|
||||
|
@ -53,5 +53,5 @@ hedgedoc_container_all_labels: >-2
|
||||
{{ hedgedoc_container_base_labels | default({}, true)
|
||||
| combine(hedgedoc_container_labels | default({}, true)) }}
|
||||
hedgedoc_container_restart_policy: >-2
|
||||
{{ (hedgedoc_deployment_method === 'docker')
|
||||
{{ (hedgedoc_deployment_method == 'docker')
|
||||
| ternary('unless-stopped', 'on-failure') }}
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
hedgedoc_user: hedgedoc
|
||||
hedgedoc_version: "1.10.0"
|
||||
hedgedoc_version: "1.10.1"
|
||||
|
||||
hedgedoc_state: present
|
||||
hedgedoc_deployment_method: docker
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
jellyfin_user: jellyfin
|
||||
jellyfin_version: "10.10.1"
|
||||
jellyfin_version: "10.10.5"
|
||||
jellyfin_state: present
|
||||
|
||||
jellyfin_base_path: /opt/jellyfin
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
keycloak_version: 26.0.5
|
||||
keycloak_version: "26.1.2"
|
||||
keycloak_container_name: keycloak
|
||||
|
||||
keycloak_container_image_upstream_registry: quay.io
|
||||
|
@ -10,7 +10,9 @@ ENV KC_DB=$DB_VENDOR
|
||||
|
||||
WORKDIR {{ keycloak_container_working_directory }}
|
||||
|
||||
{% if keycloak_container_image_add_local_providers | default(true) %}
|
||||
ADD ./providers/* providers/
|
||||
{% endif %}
|
||||
# Workaround to set correct mode on jar files
|
||||
USER root
|
||||
RUN chmod -R 0770 providers/*
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
snipe_it_user: snipeit
|
||||
snipe_it_version: "7.0.13"
|
||||
snipe_it_version: "7.1.15"
|
||||
snipe_it_domain: ~
|
||||
snipe_it_state: present
|
||||
snipe_it_deployment_method: docker
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
vaultwarden_user: vaultwarden
|
||||
vaultwarden_version: "1.32.4"
|
||||
vaultwarden_version: "1.33.2"
|
||||
|
||||
vaultwarden_config_file: "/etc/vaultwarden/config.json"
|
||||
vaultwarden_config_directory: "{{ vaultwarden_config_file | dirname }}"
|
||||
|
Reference in New Issue
Block a user