mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 00:00:59 +00:00
24 lines
516 B
YAML
24 lines
516 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
emulatorjs:
|
|
image: "linuxserver/emulatorjs:1.9.2"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
- "${PANEL_APP_PORT_FRONTEND}:80"
|
|
volumes:
|
|
- "${CONFIG_PATH}:/config"
|
|
- "${DATA_PATH}:/data"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- SUBFOLDER=${SUBFOLDER}
|
|
labels:
|
|
createdBy: "Apps"
|