16 lines
350 B
Bash
Executable File
16 lines
350 B
Bash
Executable File
#! /bin/bash
|
|
|
|
docker run --rm -it \
|
|
--name=booksonic \
|
|
-e PUID=$(id -u) \
|
|
-e PGID=$(id -g) \
|
|
-e TZ=Europe/London \
|
|
-e CONTEXT_PATH=localhost \
|
|
-p 4041:4040 \
|
|
-v $PWD/mnt/config:/config \
|
|
-v $PWD/mnt/audiobooks:/audiobooks \
|
|
-v $PWD/mnt/podcasts:/podcasts \
|
|
-v $PWD/mnt/othermedia:/othermedia \
|
|
linuxserver/booksonic
|
|
|