forked from elmuz/catafalco
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Progress. Nice configuration. Still some TODO's
- Loading branch information
Funky Sloth
authored and
Alessio Elmi
committed
Jan 26, 2022
1 parent
4f3bb35
commit 855575e
Showing
50 changed files
with
692 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- handle influxdb token as system var | ||
- dns | ||
- verify networks and open ports | ||
- verify creation process for nextcloud |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
container_name: duplicati | ||
|
||
dashboard_url: "https://duplicati.{{ host_local }}" | ||
|
||
dashboard_name: "Duplicati" | ||
|
||
homer_category: services |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
- name: Make sure the Duplicati container is created and running | ||
docker_container: | ||
name: "{{ container_name }}" | ||
image: "ghcr.io/linuxserver/duplicati" | ||
pull: yes | ||
state: 'started' | ||
env: | ||
"PUID": "{{ guid }}" | ||
"PGID": "{{ guid }}" | ||
"TZ": "{{ timezone }}" | ||
volumes: | ||
- "{{ docker_dir }}/{{ container_name }}/config:/config" | ||
- "{{ mergerfs_root }}/Media:/source" | ||
restart_policy: unless-stopped | ||
|
||
- name: Add {{ container_name }} to the SWAG network (reverse-proxy) | ||
docker_network: | ||
name: swag_internal_network | ||
connected: | ||
- "{{ container_name }}" | ||
appends: yes | ||
when: enable_swag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
container_name: influxdb | ||
|
||
dashboard_url: "https://influxdb.{{ host_local }}/" | ||
|
||
homer_category: system | ||
|
||
dashboard_name: "InfluxDB" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
- name: Make sure the InfluxDB container is created and running | ||
docker_container: | ||
name: "{{ container_name }}" | ||
image: "influxdb" | ||
pull: yes | ||
state: 'started' | ||
env: | ||
DOCKER_INFLUXDB_INIT_MODE: "setup" | ||
DOCKER_INFLUXDB_INIT_USERNAME: "{{ influxdb_user }}" | ||
DOCKER_INFLUXDB_INIT_PASSWORD: "{{ influxdb_pass }}" | ||
DOCKER_INFLUXDB_INIT_ORG: "{{ influxdb_org}}" | ||
DOCKER_INFLUXDB_INIT_BUCKET: "{{ influxdb_bucket }}" | ||
volumes: | ||
- "{{ docker_dir }}/{{ container_name }}:/var/lib/influxdb2" | ||
ports: | ||
- 8086:8086/tcp | ||
restart_policy: unless-stopped | ||
|
||
- name: Add {{ container_name }} to the SWAG network (reverse-proxy) | ||
docker_network: | ||
name: swag_internal_network | ||
connected: | ||
- "{{ container_name }}" | ||
appends: yes | ||
when: enable_swag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.