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
This is a behaviour of Docker: these volumes are created because /watch and /output folders are declared in the Dockerfile. If a mapping is not explicitly set, Docker will use a temporary volume.
Current Behavior
I have these disabled in my docker-compose:
-v /home/user/HandBrake/watch:/watch:rw \
-v /home/user/HandBrake/output:/output:rw \
and put AUTOMATED_CONVERSION=0 in my environment
but these directories are still being mounted as non persistent volumes
Expected Behavior
Don't create mounts for them if automated conversion is disabled and they are not required
Steps To Reproduce
comment out the volumes and set AUTOMATED_CONVERSION=0
You will see docker create non persistent volumes for these.
Environment
Container creation
version: '3'
services:
handbrake:
image: jlesage/handbrake:latest
ports:
- 5800:5800
volumes:
- handbrake_config:/config
- video_nfs:/storage
volumes:
handbrake_config:
external: true
video_nfs:
external: true
Container log
Container inspect
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: