Update README with ports
This commit is contained in:
parent
f7d9e0e20c
commit
a6f1711329
|
@ -33,6 +33,7 @@ Then you can run it:
|
||||||
--name=sucker \
|
--name=sucker \
|
||||||
--device cdrom --device dvd --device sr0 \
|
--device cdrom --device dvd --device sr0 \
|
||||||
-v $incoming:/incoming \
|
-v $incoming:/incoming \
|
||||||
|
-p 5880:8080 \
|
||||||
media-sucker
|
media-sucker
|
||||||
|
|
||||||
Or you can put it in a `docker-compose.yaml` file:
|
Or you can put it in a `docker-compose.yaml` file:
|
||||||
|
@ -45,6 +46,9 @@ services:
|
||||||
- type: bind
|
- type: bind
|
||||||
source: /path/to/incoming
|
source: /path/to/incoming
|
||||||
target: /incoming
|
target: /incoming
|
||||||
|
ports:
|
||||||
|
- published: 5880
|
||||||
|
target: 8080
|
||||||
```
|
```
|
||||||
|
|
||||||
Stick a video DVD or audio CD in,
|
Stick a video DVD or audio CD in,
|
||||||
|
@ -53,9 +57,7 @@ then spit your media back out.
|
||||||
Then, eventually, you'll have a new `.mkv` file (for video)
|
Then, eventually, you'll have a new `.mkv` file (for video)
|
||||||
or a new directory of `.mp3` files (for audio).
|
or a new directory of `.mp3` files (for audio).
|
||||||
|
|
||||||
You can watch what it's doing:
|
You can watch what it's doing at http://localhost:5880/
|
||||||
|
|
||||||
docker logs --since=1m -f sucker
|
|
||||||
|
|
||||||
## A note on filenames and tags
|
## A note on filenames and tags
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue