-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
43 lines (41 loc) · 1001 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
lidarr:
cd contexts/lidarr; podman build \
--build-arg LIDARR_VERSION=2.1.7.4030 \
--tag lidarr \
.
prowlarr:
cd contexts/prowlarr; podman build \
--build-arg PROWLARR_VERSION=1.13.3.4273 \
--tag prowlarr \
.
qbittorrent:
cd contexts/qbittorrent; podman build \
--build-arg QBITTORRENT_VERSION=4.6.4 \
--tag qbittorrent \
.
run-qbittorrent:
podman run --interactive --rm --tty --entrypoint bash --volume /tmp:/config \
qbittorrent
radarr:
cd contexts/radarr; podman build \
--build-arg RADARR_VERSION=5.3.6.8612 \
--tag radarr \
.
sonarr:
cd contexts/sonarr; podman build \
--build-arg SONARR_VERSION=4.0.2.1183 \
--tag sonarr \
.
run-whisparr:
podman run --interactive --rm --tty --entrypoint bash --volume /tmp:/config \
whisparr
whisparr:
cd contexts/whisparr; podman build \
--build-arg WHISPARR_VERSION=2.0.0.548 \
--tag whisparr \
.
ytdl-sub:
cd contexts/ytdl-sub; podman build \
--build-arg YTDLSUB_VERSION=2024.4.3 \
--tag ytdl-sub \
.