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.

33 lines
1.3 KiB
YAML

# [Emulatorjs](https://github.com/linuxserver/emulatorjs) - In browser web based
# emulation portable to nearly any device for many retro consoles. A mix of
# emulators is used between Libretro and EmulatorJS.
---
version: "2.1"
services:
emulatorjs:
image: ghcr.io/linuxserver/emulatorjs
container_name: emulatorjs
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder for reverse proxies IE '/FOLDER/'
- SUBFOLDER=/ # optional
volumes:
# Path to store user profiles
- ${BASEDIR:-/volume1/docker}/emulatorjs/config:/config
# Path to store roms/artwork
- ${BASEDIR:-/volume1/docker}/emulatorjs/data:/data
ports:
# Rom/artwork management interface, used to generate/manage config files and download artwork
- 3000:3000
# Emulation frontend containing static web files used to browse and launch games
- 80:80
# IPFS peering port, if you want to participate in the P2P network to distribute frontend artwork please forward this to the Internet
- 4001:4001 # optional
restart: unless-stopped