You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to create a Docker container that operates without the need for a local browser? I store my audiobooks on a NAS, and Audiobookshelf runs in a Docker environment. Running this script directly on the host isn't feasible for me. Would dockerizing this script be a viable solution?
The text was updated successfully, but these errors were encountered:
hi, i am new to actually creating docker containers but am currently trying to do this on my spare time.
it is a hobby project, but i will post if i finish anything
It isn't really viable, as it opens a browser on the host, and monitors the host clipboard. It's trivial to Dockerize, but it fails almost immediately. My Dockerfile for it is as follows, for posterity:
FROM python:3.9-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "BadaBoomBooks.py", "/books"]
Is it possible to create a Docker container that operates without the need for a local browser? I store my audiobooks on a NAS, and Audiobookshelf runs in a Docker environment. Running this script directly on the host isn't feasible for me. Would dockerizing this script be a viable solution?
The text was updated successfully, but these errors were encountered: