@@ -9,24 +9,20 @@ project_blurb: |
99
1010 For more information on SickGear visit their website and check it out: https://github.com/SickGear/SickGear
1111project_lsio_github_repo_url : " https://github.com/linuxserver/docker-{{ project_name }}"
12-
1312# supported architectures
1413available_architectures :
15- - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
16- - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
17-
14+ - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
15+ - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1816# container parameters
1917param_container_name : " {{ project_name }}"
2018param_usage_include_vols : true
2119param_volumes :
22- - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Persistent configuration files." }
23- - { vol_path: "/tv", vol_host_path: "/path/to/tv", desc: "where you store your tv shows" }
24- - { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "your downloads folder for post processing (must not be download in progress)" }
25-
20+ - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Persistent configuration files."}
21+ - {vol_path: "/tv", vol_host_path: "/path/to/tv", desc: "where you store your tv shows"}
22+ - {vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "your downloads folder for post processing (must not be download in progress)"}
2623param_usage_include_ports : true
2724param_ports :
28- - { external_port: "8081", internal_port: "8081", port_desc: "will map the container's port 8081 to port 8081 on the host" }
29-
25+ - {external_port: "8081", internal_port: "8081", port_desc: "will map the container's port 8081 to port 8081 on the host"}
3026# application setup block
3127app_setup_block_enabled : true
3228app_setup_block : |
@@ -59,26 +55,67 @@ app_setup_block: |
5955 * notice the configuration difference and migrate copies of the old settings into the new app
6056
6157 * start the new container and test
62-
58+ # init diagram
59+ init_diagram : |
60+ "sickgear:latest": {
61+ docker-mods
62+ base {
63+ fix-attr +\nlegacy cont-init
64+ }
65+ docker-mods -> base
66+ legacy-services
67+ custom services
68+ init-services -> legacy-services
69+ init-services -> custom services
70+ custom services -> legacy-services
71+ legacy-services -> ci-service-check
72+ init-migrations -> init-adduser
73+ init-os-end -> init-config
74+ init-config -> init-config-end
75+ init-sickgear-config -> init-config-end
76+ init-os-end -> init-crontab-config
77+ init-mods-end -> init-custom-files
78+ base -> init-envfile
79+ base -> init-migrations
80+ base -> init-mods
81+ init-config-end -> init-mods
82+ init-mods -> init-mods-end
83+ init-mods-package-install -> init-mods-end
84+ init-mods -> init-mods-package-install
85+ base -> init-os-end
86+ init-adduser -> init-os-end
87+ init-envfile -> init-os-end
88+ init-migrations -> init-os-end
89+ init-custom-files -> init-services
90+ init-mods-end -> init-services
91+ init-config -> init-sickgear-config
92+ init-services -> svc-cron
93+ svc-cron -> legacy-services
94+ init-services -> svc-sickgear
95+ svc-sickgear -> legacy-services
96+ }
97+ Base Images: {
98+ "baseimage-alpine:3.20"
99+ }
100+ "sickgear:latest" <- Base Images
63101# changelog
64102changelogs :
65- - { date: "25.06.24:", desc: "Rebase to Alpine 3.20."}
66- - { date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
67- - { date: "08.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
68- - { date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
69- - { date: "27.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
70- - { date: "05.03.23:", desc: "Rebase to Alpine 3.17." }
71- - { date: "18.11.22:", desc: "Update service file from legacy SickBeard.py to sickgear.py." }
72- - { date: "10.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
73- - { date: "19.09.22:", desc: "Rebase to alpine 3.15. Build unrar from source." }
74- - { date: "31.01.21:", desc: "Add unrar." }
75- - { date: "29.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." }
76- - { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
77- - { date: "03.06.20:", desc: "Rebasing to alpine 3.12, switch to python3." }
78- - { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
79- - { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
80- - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
81- - { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
82- - { date: "07.11.18:", desc: "Pipeline prep"}
83- - { date: "07.07.18:", desc: "Initial draft release"}
84-
103+ - {date: "25.06.24:", desc: "Rebase to Alpine 3.20."}
104+ - {date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
105+ - {date: "08.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
106+ - {date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
107+ - {date: "27.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf."}
108+ - {date: "05.03.23:", desc: "Rebase to Alpine 3.17."}
109+ - {date: "18.11.22:", desc: "Update service file from legacy SickBeard.py to sickgear.py."}
110+ - {date: "10.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3."}
111+ - {date: "19.09.22:", desc: "Rebase to alpine 3.15. Build unrar from source."}
112+ - {date: "31.01.21:", desc: "Add unrar."}
113+ - {date: "29.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information."}
114+ - {date: "23.01.21:", desc: "Rebasing to alpine 3.13."}
115+ - {date: "03.06.20:", desc: "Rebasing to alpine 3.12, switch to python3."}
116+ - {date: "19.12.19:", desc: "Rebasing to alpine 3.11."}
117+ - {date: "28.06.19:", desc: "Rebasing to alpine 3.10."}
118+ - {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."}
119+ - {date: "22.02.19:", desc: "Rebasing to alpine 3.9."}
120+ - {date: "07.11.18:", desc: "Pipeline prep"}
121+ - {date: "07.07.18:", desc: "Initial draft release"}
0 commit comments