Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2024-12-02 07:03:16 +00:00
parent 4080eb3703
commit 7e431dc24f
No known key found for this signature in database

View file

@ -20,7 +20,7 @@ common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optiona
param_container_name: "{{ project_name }}" param_container_name: "{{ project_name }}"
param_usage_include_vols: true param_usage_include_vols: true
param_volumes: param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" } - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files"}
- {vol_path: "/music", vol_host_path: "/path/to/music/library", desc: "Music library"} - {vol_path: "/music", vol_host_path: "/path/to/music/library", desc: "Music library"}
- {vol_path: "/downloads", vol_host_path: "/path/to/ingest", desc: "Non processed music"} - {vol_path: "/downloads", vol_host_path: "/path/to/ingest", desc: "Non processed music"}
param_usage_include_ports: true param_usage_include_ports: true
@ -38,6 +38,48 @@ app_setup_block: |
See [Beets](http://beets.io/) for more info. See [Beets](http://beets.io/) for more info.
Contains [beets-extrafiles](https://github.com/Holzhaus/beets-extrafiles) plugin, [configuration details](https://github.com/Holzhaus/beets-extrafiles#usage) Contains [beets-extrafiles](https://github.com/Holzhaus/beets-extrafiles) plugin, [configuration details](https://github.com/Holzhaus/beets-extrafiles#usage)
# init diagram
init_diagram: |
"beets:latest": {
docker-mods
base {
fix-attr +\nlegacy cont-init
}
docker-mods -> base
legacy-services
custom services
init-services -> legacy-services
init-services -> custom services
custom services -> legacy-services
legacy-services -> ci-service-check
init-migrations -> init-adduser
init-config -> init-beets-config
init-os-end -> init-config
init-config -> init-config-end
init-os-end -> init-crontab-config
init-mods-end -> init-custom-files
base -> init-envfile
base -> init-migrations
base -> init-mods
init-config-end -> init-mods
init-mods -> init-mods-end
init-mods-package-install -> init-mods-end
init-mods -> init-mods-package-install
base -> init-os-end
init-adduser -> init-os-end
init-envfile -> init-os-end
init-migrations -> init-os-end
init-custom-files -> init-services
init-mods-end -> init-services
init-services -> svc-beets
svc-beets -> legacy-services
init-services -> svc-cron
svc-cron -> legacy-services
}
Base Images: {
"baseimage-alpine:3.20"
}
"beets:latest" <- Base Images
# changelog # changelog
changelogs: changelogs:
- {date: "01.10.24:", desc: "Add packages required for Discogs plugin."} - {date: "01.10.24:", desc: "Add packages required for Discogs plugin."}