├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue.bug.yml │ └── issue.feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── greetings.yml │ └── permissions.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.aarch64 ├── LICENSE ├── README.md ├── jenkins-vars.yml ├── package_versions.txt ├── readme-vars.yml └── root ├── defaults └── mime.types └── etc ├── nginx ├── nginx.conf └── site-confs │ └── default └── s6-overlay └── s6-rc.d ├── init-config-end └── dependencies.d │ └── init-emulatorjs-config ├── init-deprecate ├── dependencies.d │ └── init-config-end ├── run ├── type └── up ├── init-emulatorjs-config ├── dependencies.d │ └── init-config ├── run ├── type └── up ├── init-services └── dependencies.d │ └── init-deprecate ├── svc-backend ├── dependencies.d │ └── init-services ├── notification-fd ├── run └── type ├── svc-ipfs ├── dependencies.d │ └── init-services ├── notification-fd ├── run └── type ├── svc-nginx ├── dependencies.d │ └── init-services ├── notification-fd ├── run └── type ├── svc-profile ├── dependencies.d │ └── init-services ├── notification-fd ├── run └── type └── user └── contents.d ├── init-deprecate ├── init-emulatorjs-config ├── svc-backend ├── svc-ipfs ├── svc-nginx └── svc-profile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/ISSUE_TEMPLATE/issue.bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/ISSUE_TEMPLATE/issue.feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/.github/workflows/permissions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jenkins-external 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/Dockerfile.aarch64 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/README.md -------------------------------------------------------------------------------- /jenkins-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/jenkins-vars.yml -------------------------------------------------------------------------------- /package_versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/package_versions.txt -------------------------------------------------------------------------------- /readme-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/readme-vars.yml -------------------------------------------------------------------------------- /root/defaults/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/defaults/mime.types -------------------------------------------------------------------------------- /root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /root/etc/nginx/site-confs/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/nginx/site-confs/default -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-emulatorjs-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/dependencies.d/init-config-end: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/init-deprecate/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-deprecate/up: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/dependencies.d/init-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/init-emulatorjs-config/up -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-services/dependencies.d/init-deprecate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-backend/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-backend/notification-fd: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-backend/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/svc-backend/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-backend/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-ipfs/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-ipfs/notification-fd: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-ipfs/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/svc-ipfs/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-ipfs/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-nginx/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-nginx/notification-fd: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/svc-nginx/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-nginx/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-profile/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-profile/notification-fd: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-profile/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxserver/docker-emulatorjs/HEAD/root/etc/s6-overlay/s6-rc.d/svc-profile/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-profile/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/init-deprecate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/init-emulatorjs-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-backend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-ipfs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-nginx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-profile: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------