mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
21 lines
414 B
YAML
21 lines
414 B
YAML
services:
|
|
emulatorjs:
|
|
image: lscr.io/linuxserver/emulatorjs:amd64-latest
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
ports:
|
|
- 3030:3000
|
|
- 8082:80
|
|
volumes:
|
|
- roms_shared:/roms:ro
|
|
- emulatorjs_config:/config
|
|
- emulatorjs_data:/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
roms_shared:
|
|
external: true
|
|
emulatorjs_config:
|
|
emulatorjs_data:
|