mirror of
https://github.com/linuxserver/docker-overseerr.git
synced 2026-02-23 00:00:48 +08:00
Rebase main to 3.16, migrate to s6v3
This commit is contained in:
parent
6279389d80
commit
4f8a269d73
@ -1,4 +1,4 @@
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
@ -13,7 +13,6 @@ ENV HOME="/config"
|
||||
RUN \
|
||||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies \
|
||||
curl \
|
||||
g++ \
|
||||
make \
|
||||
python3 && \
|
||||
@ -60,4 +59,5 @@ COPY root/ /
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 5055
|
||||
|
||||
VOLUME /config
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
@ -13,7 +13,6 @@ ENV HOME="/config"
|
||||
RUN \
|
||||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies \
|
||||
curl \
|
||||
g++ \
|
||||
make \
|
||||
python3 && \
|
||||
@ -60,4 +59,5 @@ COPY root/ /
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 5055
|
||||
|
||||
VOLUME /config
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
@ -13,7 +13,6 @@ ENV HOME="/config"
|
||||
RUN \
|
||||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies \
|
||||
curl \
|
||||
g++ \
|
||||
make \
|
||||
python3 && \
|
||||
@ -60,4 +59,5 @@ COPY root/ /
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 5055
|
||||
|
||||
VOLUME /config
|
||||
|
||||
@ -230,6 +230,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||
|
||||
## Versions
|
||||
|
||||
* **27.10.22:** - Rebase main to 3.16, migrate to s6v3.
|
||||
* **20.08.22:** - Don't install cypress.
|
||||
* **01.04.22:** - Rebase main branch to Alpine 3.15.
|
||||
* **27.01.22:** - Rebase develop branch to Alpine 3.15.
|
||||
|
||||
@ -47,6 +47,7 @@ app_setup_block: |
|
||||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "27.10.22:", desc: "Rebase main to 3.16, migrate to s6v3." }
|
||||
- { date: "20.08.22:", desc: "Don't install cypress." }
|
||||
- { date: "01.04.22:", desc: "Rebase main branch to Alpine 3.15." }
|
||||
- { date: "27.01.22:", desc: "Rebase develop branch to Alpine 3.15." }
|
||||
|
||||
2
root/etc/cont-init.d/30-config → root/etc/s6-overlay/s6-rc.d/init-overseerr-config/run
Normal file → Executable file
2
root/etc/cont-init.d/30-config → root/etc/s6-overlay/s6-rc.d/init-overseerr-config/run
Normal file → Executable file
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
# permissions
|
||||
# permissions
|
||||
chown -R abc:abc \
|
||||
/config
|
||||
1
root/etc/s6-overlay/s6-rc.d/init-overseerr-config/type
Normal file
1
root/etc/s6-overlay/s6-rc.d/init-overseerr-config/type
Normal file
@ -0,0 +1 @@
|
||||
oneshot
|
||||
1
root/etc/s6-overlay/s6-rc.d/init-overseerr-config/up
Normal file
1
root/etc/s6-overlay/s6-rc.d/init-overseerr-config/up
Normal file
@ -0,0 +1 @@
|
||||
/etc/s6-overlay/s6-rc.d/init-qbittorrent-config/run
|
||||
@ -0,0 +1 @@
|
||||
3
|
||||
7
root/etc/s6-overlay/s6-rc.d/svc-overseerr/run
Executable file
7
root/etc/s6-overlay/s6-rc.d/svc-overseerr/run
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
export CONFIG_DIRECTORY="/config"
|
||||
|
||||
exec \
|
||||
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 5055" \
|
||||
cd /app/overseerr s6-setuidgid abc /usr/bin/yarn start
|
||||
1
root/etc/s6-overlay/s6-rc.d/svc-overseerr/type
Normal file
1
root/etc/s6-overlay/s6-rc.d/svc-overseerr/type
Normal file
@ -0,0 +1 @@
|
||||
longrun
|
||||
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
cd /app/overseerr || exit
|
||||
|
||||
export CONFIG_DIRECTORY="/config"
|
||||
|
||||
exec \
|
||||
s6-setuidgid abc /usr/bin/yarn start
|
||||
Loading…
x
Reference in New Issue
Block a user