mirror of
https://github.com/oskvr37/tiddl.git
synced 2026-06-13 04:05:08 +03:00
🐬 Added actual ghcr.io URL for docker commands (#139)
* Added actual ghcr.io URL for docker commands Added ghcr.io/oskvr37/tiddl:latest in docker-compose.yml example code and docker run example code, in README.md * Update Dockerfile
This commit is contained in:
+16
-2
@@ -1,6 +1,20 @@
|
||||
# --- Optimised Layer Caching --- #
|
||||
# Layer 1 (ffmpeg) will never regenerate
|
||||
# Layer 2 (pip install) will regenerate if pyproject.toml is changed
|
||||
# Layer 3 (build & install tiddl), rengerates on any code change
|
||||
|
||||
FROM python:alpine
|
||||
WORKDIR /root
|
||||
|
||||
# -- Layer 1 - ffmpeg install (it'll stay cached as a layer always) --
|
||||
RUN apk add --no-cache ffmpeg
|
||||
|
||||
# -- Layer 2 - pip install depenencies (remains cached unless pyproject.toml changes) --
|
||||
# Exports 'depenencies' from pyproject.toml formatted to requirements.txt format, pipelined to pip install
|
||||
COPY pyproject.toml .
|
||||
RUN python -c "import tomllib; f=open('pyproject.toml','rb'); print('\n'.join(tomllib.load(f)['project']['dependencies']))" | xargs pip install
|
||||
|
||||
# -- Layer 3 - Uncached layer (regenerates anytime a new build is released) --
|
||||
COPY . .
|
||||
RUN --mount=type=cache,target=/root/.cache/pip pip install .
|
||||
RUN pip install --no-deps .
|
||||
RUN rm -rf *
|
||||
RUN apk add ffmpeg
|
||||
|
||||
@@ -50,7 +50,7 @@ Commands:
|
||||
Based on python:alpine, slim build
|
||||
**Docker run example (quickest / easiest)**
|
||||
```
|
||||
docker run -rm -v /downloads/dir:/root/Music/Tiddl/ -v ./config/tiddl/:/root/ >
|
||||
docker run -rm -v /downloads/dir:/root/Music/Tiddl/ -v ./config/tiddl/:/root/ ghcr.io/oskvr37/tiddl:latest
|
||||
```
|
||||
|
||||
**docker-compose.yml example (not required, though allows for advanced configs)**
|
||||
@@ -58,7 +58,7 @@ docker run -rm -v /downloads/dir:/root/Music/Tiddl/ -v ./config/tiddl/:/root/ >
|
||||
services:
|
||||
tiddl:
|
||||
container_name: tiddl
|
||||
image: <ghcr.ioURL>:latest
|
||||
image: ghcr.io/oskvr37/tiddl:latest
|
||||
volumes:
|
||||
- /downloads/dir:/root/Music/Tiddl/ #default dir
|
||||
- ./config/tiddl/:/root/ # Default location of config file
|
||||
|
||||
Reference in New Issue
Block a user