From 46ccf6e759c35dee0a7953d9abbba8ca80c6d6d7 Mon Sep 17 00:00:00 2001 From: geezo Date: Mon, 30 Dec 2024 01:08:55 +0000 Subject: [PATCH] checking in chnages --- .gitignore | 3 ++- airsonic/docker-compose.yml | 7 +++++++ autorestic/.autorestic.lock.yml | 1 + autorestic/config.yaml | 28 ++++++++++++++-------------- navidrome/docker-compose.yml | 1 + navidrome/navidrome.toml | 1 + olivetin/config.yaml | 2 +- olivetin/docker-compose.yml | 1 + 8 files changed, 28 insertions(+), 16 deletions(-) create mode 100644 airsonic/docker-compose.yml create mode 100644 autorestic/.autorestic.lock.yml create mode 100644 navidrome/navidrome.toml diff --git a/.gitignore b/.gitignore index c6628a0..00d6757 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ music/ data/ -immich/library \ No newline at end of file +immich/library +immich/postgres \ No newline at end of file diff --git a/airsonic/docker-compose.yml b/airsonic/docker-compose.yml new file mode 100644 index 0000000..72ba513 --- /dev/null +++ b/airsonic/docker-compose.yml @@ -0,0 +1,7 @@ +services: + airsonic: + container_name: airsonic + image: tamland/airsonic-refix:latest + ports: + - "1007:80" + restart: unless-stopped \ No newline at end of file diff --git a/autorestic/.autorestic.lock.yml b/autorestic/.autorestic.lock.yml new file mode 100644 index 0000000..b9e4d30 --- /dev/null +++ b/autorestic/.autorestic.lock.yml @@ -0,0 +1 @@ +running: false diff --git a/autorestic/config.yaml b/autorestic/config.yaml index e677f7f..7977a6a 100644 --- a/autorestic/config.yaml +++ b/autorestic/config.yaml @@ -10,8 +10,8 @@ backends: AWS_SECRET_ACCESS_KEY: ARVHEzmsqB7DEy7kOIwNPUPC9rSl5DtmhsH1XgNc locations: - hoarder_meilisearch_data: - from: hoarder_meilisearch_data + hoarder_meilisearch: + from: hoarder_meilisearch type: volume to: - aws_s3 @@ -38,20 +38,20 @@ locations: to: - aws_s3 - # nextcloud_nextcloud_aio_data: - # from: nextcloud_nextcloud_aio_data - # type: volume - # to: - # - aws_s3 - - # nextcloud_nextcloud_aio_mastercontainer: - # from: nextcloud_nextcloud_aio_mastercontainer - # type: volume - # to: - # - aws_s3 - portainer_portainer_data: from: portainer_portainer_data type: volume to: - aws_s3 + + nextcloud_db: + from: nextcloud_db + type: volume + to: + - aws_s3 + + nextcloud_nextcloud: + from: nextcloud_nextcloud + type: volume + to: + - aws_s3 \ No newline at end of file diff --git a/navidrome/docker-compose.yml b/navidrome/docker-compose.yml index 2498392..27fb2ca 100644 --- a/navidrome/docker-compose.yml +++ b/navidrome/docker-compose.yml @@ -11,6 +11,7 @@ services: ND_LOGLEVEL: info ND_SESSIONTIMEOUT: 24h ND_BASEURL: "" + ND_SCANNER_GROUPALBUMRELEASES: true volumes: - "./data:/data" - "./:/music:ro" diff --git a/navidrome/navidrome.toml b/navidrome/navidrome.toml new file mode 100644 index 0000000..de546d1 --- /dev/null +++ b/navidrome/navidrome.toml @@ -0,0 +1 @@ +Scanner.GroupAlbumReleases = true \ No newline at end of file diff --git a/olivetin/config.yaml b/olivetin/config.yaml index 8c11920..1f8730a 100644 --- a/olivetin/config.yaml +++ b/olivetin/config.yaml @@ -1,4 +1,4 @@ actions: - title: backup containers - shell: "docker run --rm -d --privileged -v /home/geezo/Documents/autorestic:/data -v /var/run/docker.sock:/var/run/docker.sock cupcakearmy/autorestic autorestic backup -va -c /data/config.yaml" + shell: "docker run --rm -d --privileged -v /home/geezo/docker_containers/autorestic:/data -v /var/run/docker.sock:/var/run/docker.sock cupcakearmy/autorestic autorestic backup -va -c /data/config.yaml" icon: smile \ No newline at end of file diff --git a/olivetin/docker-compose.yml b/olivetin/docker-compose.yml index 8d87f70..f33b529 100644 --- a/olivetin/docker-compose.yml +++ b/olivetin/docker-compose.yml @@ -4,6 +4,7 @@ services: image: jamesread/olivetin volumes: - ./:/config # replace host path or volume as needed + - /var/run/docker.sock:/var/run/docker.sock ports: - "1004:1337" restart: unless-stopped \ No newline at end of file