mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-22 18:55:33 +00:00
Merge pull request #1 from rameskum/main-1
feat(README): Enhance README with Docker instructions
This commit is contained in:
commit
74bb83f6b2
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM --platform=${BUILDPLATFORM} python:3.9.20-slim-bookworm
|
||||
|
||||
RUN pip install aiohttp
|
||||
VOLUME /app/downloads
|
||||
|
||||
WORKDIR /app
|
||||
COPY mkbsd.py .
|
||||
|
||||
CMD ["python", "mkbsd.py"]
|
||||
|
|
@ -30,6 +30,12 @@ MKBSD comes in two variants! Node.js and Python.
|
|||
4. Wait a little.
|
||||
5. All wallpapers are now in a newly created `downloads` subfolder.
|
||||
|
||||
### Running using docker
|
||||
|
||||
1. Ensure you have docker installed
|
||||
2. Build the image with `docker build -t mkbsd .`
|
||||
3. Run the image, mounting a directory where you want the image to be stored as a volume at `/app/downloads`. For example, `docker run -v $PWD:/app/downloads mkbsd`
|
||||
|
||||
## FAQ
|
||||
|
||||
### Q: What's the story behind this?
|
||||
|
|
Loading…
Reference in a new issue