You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
463 B
YAML
20 lines
463 B
YAML
version: "2.1"
|
|
services:
|
|
emulatorjs:
|
|
image: lscr.io/linuxserver/emulatorjs:latest
|
|
container_name: emulatorjs
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Paris
|
|
# - SUBFOLDER=/ #optional
|
|
volumes:
|
|
- "./config:/config"
|
|
- "./data:/data"
|
|
ports:
|
|
- 3333:3000
|
|
- 8880:80
|
|
#- 4001:4001 #optional
|
|
restart: unless-stopped
|
|
|
|
#for i in *.cue; do chdman createcd -i "$i" -o "${i%.*}.chd"; done |