docker run --rm -v "`pwd`:/storage" jsavargas/process-flac
10K+
#Dockerfile # COMO INSTALARLO Y EJECUTARLO # docker build -t flacprocess . # docker run --rm -it -v /mnt:/mnt flacprocess bash #Download base image ubuntu 18.04
FROM ubuntu:18.04
# Update Software repository|
RUN apt-get update -y
# Install cuetools shntool
RUN apt-get install -y cuetools shntool bash wget && rm -rf /var/lib/apt/lists/*
# setup directories
RUN mkdir -p /workdir
# cleanup
RUN apt-get -y autoremove
RUN apt-get -y clean
RUN rm -rf /var/lib/apt/lists/*
RUN rm -rf /tmp/*
RUN rm -rf /var/tmp/*
# entrypoint
WORKDIR /storage
COPY flac.process /usr/local/bin/flac.process
RUN chmod o+x /usr/local/bin/flac.process
CMD ["flac.process"]
##USE
docker run --rm -it -v /media:/storage jsavargas/process-flac bash
docker run --rm -v "`pwd`:/storage" jsavargas/process-flac
docker run --rm -v "`pwd`:/storage" jsavargas/process-flac bash -c "find . -iname *cue -exec flac.process -c {} ;"
Content type
Image
Digest
Size
63.6 MB
Last updated
almost 6 years ago
docker pull jsavargas/process-flac