15 lines
315 B
YAML
15 lines
315 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8083:8083"
|
|
server:
|
|
image: "prettyplayerapi:0.0.7-SNAPSHOT"
|
|
ports:
|
|
- "8082:8080"
|
|
environment:
|
|
- ALBUM_ROOT_DIR=/mnt/Cds
|
|
- ALBUM_ART_ROOT_DIR=/mnt/albumart
|
|
volumes:
|
|
- ${cds}:/mnt/Cds
|
|
- ${art}:/mnt/albumart |