Closed ciworks closed 1 week ago
Have you read and understood this part of the readme?
[X ] YES
[] NO
Setting the STORAGE_CD environment field in docker-compose appears to append the directory name specified to the default value /out/Ripper/CD rather than creating a new absolute path.
STORAGE_CD
/out/Ripper/CD
version: "3.7" services: ripper: image: rix1337/docker-ripper:latest privileged: true container_name: ripper ports: - 9090:9090 environment: - BAD_THRESHOLD=3 - STORAGE_CD=/flac - DEBUGTOWEB=false - TZ=Europe/London - DRIVE=/dev/sr0 volumes: - ./config:/config:rw - /srv/media/MUSIC:/FLAC:rw devices: - /dev/sr0:/dev/sr0 restart: always
Ripped media is then stored in /out/Ripper/CD/flac rather than /flac
/out/Ripper/CD/flac
/flac
Seems you may need to adjust abcde.conf instead
Have you read and understood this part of the readme?
[X ] YES
[] NO
Setting the
STORAGE_CD
environment field in docker-compose appears to append the directory name specified to the default value/out/Ripper/CD
rather than creating a new absolute path.Ripped media is then stored in
/out/Ripper/CD/flac
rather than/flac