Skip to content

Commit a3a6d6d

Browse files
committed
Basic Docker syncer configuration
First version of Docker config to search for all available videos and sync them to bind mounted folder at /home/appuser/Tablo. Some hacks to enable functioning in Synology DSM 7.2's Container Manager. Assumes that Tablo directory has already been configured with a command like: > ./tut.py config --discover Tested it locally in MacOS with Tablo mounted shared folder: > docker build -t pvulgaris/tut-syncer:arm64 . > docker run --name tut-syncer --mount type=bind,source=/Volumes/video/Tablo,target=/home/appuser/Tablo pvulgaris/tut-syncer:arm64 Then build amd64 version for upload to Docker Hub and use on DS224+: > docker buildx build -t pvulgaris/tut-syncer:amd64 --platform linux/amd64 . Finally, use the DSM api to setup a job with Task Scheduler as described in https://www.reddit.com/r/synology/comments/10wkxuc/restart_docker_container/
1 parent 456123d commit a3a6d6d

File tree

2 files changed

+24
-56
lines changed

2 files changed

+24
-56
lines changed

Dockerfile

+24-7
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,31 @@ ENV PYTHONDONTWRITEBYTECODE=1
1414
# the application crashes without emitting any logs due to buffering.
1515
ENV PYTHONUNBUFFERED=1
1616

17+
# Install ffmpeg libraries needed to transcode Tablo video files.
18+
RUN apt-get update && apt-get install -y ffmpeg
19+
1720
WORKDIR /app
1821

1922
# Create a non-privileged user that the app will run under.
2023
# See https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user
21-
ARG UID=10001
24+
# Default Synology DSM first uid. See comments below for more context.
25+
# TODO: Make uid and gid easier to configure parameters.
26+
ARG UID=1026
2227
RUN adduser \
2328
--disabled-password \
2429
--gecos "" \
25-
--home "/nonexistent" \
2630
--shell "/sbin/nologin" \
27-
--no-create-home \
2831
--uid "${UID}" \
2932
appuser
3033

34+
# GID hacks for Synology DSM. Try as best we can to replicate DSM's default
35+
# primary ("100(users)") and secondary group membership ("101(administrators)")
36+
# to overcome permission issues with writing to a bind mounted folder, while
37+
# still being somewhat platform agnostic. Example of the issue:
38+
# https://www.reddit.com/r/synology/comments/s1arg0/synology_and_docker_permission_problem/
39+
RUN usermod -g users appuser
40+
RUN adduser appuser `cat /etc/group | grep ":101:" | cut -d':' -f1`
41+
3142
# Download dependencies as a separate step to take advantage of Docker's caching.
3243
# Leverage a cache mount to /root/.cache/pip to speed up subsequent builds.
3344
# Leverage a bind mount to requirements.txt to avoid having to copy them into
@@ -42,8 +53,14 @@ USER appuser
4253
# Copy the source code into the container.
4354
COPY . .
4455

45-
# Expose the port that the application listens on.
46-
EXPOSE 8000
56+
# Build the shows db.
57+
# TODO: Run this separately for now.
58+
# RUN python3 tut.py config --discover
4759

48-
# Run the application.
49-
CMD python3 tut.py
60+
# Check if ~/Tablo directory is mounted. Ideally this is run before each tut.py
61+
# command (or tut.py is modified to not implicitly create a ~/Tablo directory)
62+
# so that we don't accidentally sync shows into the container.
63+
# TODO: Also check we have the right read/write permissions.
64+
# Then sync all shows.
65+
CMD if [ ! -d "/home/appuser/Tablo" ]; then echo "/home/appuser/Tablo not mounted." && exit 1; fi; \
66+
python3 tut.py library --build && python3 tut.py -L search | python3 tut.py copy

compose.yaml

-49
This file was deleted.

0 commit comments

Comments
 (0)