We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad72619 + 773e6ea commit 3c3a93bCopy full SHA for 3c3a93b
Dockerfile
@@ -0,0 +1,8 @@
1
+FROM python:3.9-slim
2
+
3
+WORKDIR /app
4
+COPY . /app
5
6
+RUN pip install .
7
8
+CMD ["python", "-m", "plex2letterboxd"]
README.md
@@ -41,6 +41,15 @@ optional arguments:
41
42
The generated CSV file can be uploaded to Letterboxd at https://letterboxd.com/import/.
43
44
+### Docker
45
46
+Build the docker image and pass a `letterboxd.csv` file into the docker run command to store the generated csv.
47
48
+```console
49
+docker build -t plex2letterboxd .
50
+docker run -v $(pwd)/config.ini:/app/config.ini -v $(pwd)/letterboxd.csv:/app/letterboxd.csv plex2letterboxd
51
+```
52
53
## Author
54
55
[Max Timkovich][profile]
0 commit comments