From cba2d917fa65df73569e822fefdaf4b128a90a4d Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Tue, 7 Jan 2025 09:46:41 -0500 Subject: [PATCH 1/2] Adding Soularr service. --- docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 92466a2a..9aeaf6bf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4429,6 +4429,21 @@ services: source: /etc/localtime target: /etc/localtime type: bind + soularr: + container_name: soularr + environment: + PUID: ${PUID} + PGID: ${PGID} + TZ: ${TZ} + #Script interval in seconds + SCRIPT_INTERVAL: 300 + image: mrusse08/soularr:latest + restart: unless-stopped + volumes: + #"You can set /downloads to whatever you want but will then need to change the Slskd download dir in your config file" + - ${DOCKER_VOLUME_STORAGEE}/downloads:/downloads + #Select where you are storing your config file. Leave "/data" since thats where the script expects the config file to be + - ${DOCKER_VOLUME_CONFIG}/soularr:/data soulseek: container_name: soulseek depends_on: From 134d4e1078e18f60465b393aa0114b38d3018eff Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Tue, 7 Jan 2025 10:07:15 -0500 Subject: [PATCH 2/2] Slight change to curl for PR list. --- .gitea/workflows/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index 28369086..a842a0c9 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -21,7 +21,7 @@ jobs: -X 'GET' \ -H 'Accept: application/json' \ -H 'Authorization: token ${{ secrets.BOT_GITEA_TOKEN }}' \ - -s | jq '{index: .number, state: .state}') + -sS | jq '{index: .number, state: .state}') pr_state=$(echo ${pr_check} | jq -r '.state') - name: Create PR