Reset history to current sanitized state

This commit is contained in:
2026-08-04 22:00:17 +00:00
commit 822c36e622
4 changed files with 61 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# BEGIN reset-history environment exclusions
.env
.env.*
*.env
*.env.*
!.env.example
!.env.*.example
!*.env.example
!*.env.*.example
# END reset-history environment exclusions
BIN
View File
Binary file not shown.
+30
View File
@@ -0,0 +1,30 @@
{
"lidarr_address": "http://192.168.97.13:8686",
"lidarr_api_key": "8347ff9b18814af29af2e465f430c3e6",
"root_folder_path": "/music/",
"fallback_to_top_result": false,
"lidarr_api_timeout": 120.0,
"quality_profile_id": 2,
"metadata_profile_id": 1,
"search_for_missing_albums": false,
"dry_run_adding_to_lidarr": false,
"lidarr_monitor_option": "",
"lidarr_monitored": true,
"lidarr_albums_to_monitor": [],
"lidarr_monitor_new_items": "",
"app_name": "Sonobarr",
"app_rev": "0.10",
"app_url": "http://odoirjmrjg.com",
"last_fm_api_key": "179df45dab33c4c3f74a09ffaad57fd1",
"last_fm_api_secret": "bd223c7bf19e9f9145202b630996a15a",
"auto_start": false,
"auto_start_delay": 60.0,
"youtube_api_key": "AIzaSyAfXlTdBsvSeOK8IGQF4NNtToNtQrc3L-c",
"similar_artist_batch_size": 10,
"openai_api_key": "",
"openai_model": "",
"openai_api_base": "",
"openai_extra_headers": "",
"openai_max_seed_artists": 5,
"api_key": ""
}
+21
View File
@@ -0,0 +1,21 @@
services:
sonobarr:
image: ghcr.io/dodelidoo-labs/sonobarr:latest
container_name: sonobarr
env_file:
- /srv/docker/secrets/sonobarr/.env
environment:
LIDARR_ADDRESS: http://192.168.97.13:8686
QUALITY_PROFILE_ID: 2
SIMILAR_ARTIST_BATCH_SIZE: 10
volumes:
- ./config:/sonobarr/config
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
networks:
npm_proxy:
ipv4_address: 192.168.97.23 # change to an available IP on your proxy network
networks:
npm_proxy:
external: true