OS.js - Browser based OS
Summary
OS.js is a virtual operating system written in JavaScript and living fully in your browser. The documentation can be found at os-js/OS.js.
Installation via docker-compose behind traefik proxy
osjs:
image: osjs/osjs:latest
labels:
- "traefik.enable=true"
- "traefik.http.routers.osjs.rule=Host(`osjs.domain.com`)"
- "traefik.http.routers.osjs.entrypoints=websecure"
- "traefik.http.routers.osjs.tls=true"
- "traefik.http.services.osjs.loadBalancer.server.port=8000"
- "traefik.docker.network=traefik"
networks:
- traefik
restart: always
No Comments