mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2025-04-20 16:16:34 -04:00
Merge 74bb83f6b2
into 82e50c64f0
This commit is contained in:
commit
56103e9a0f
2 changed files with 18 additions and 2 deletions
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…
Add table
Reference in a new issue