Remove the host ports
Create a url for 443 and 3000
Go to the url for 3000 port and install kasm
Install Chrome or which ever one and press install button
Change the zone port
Remove the host ports
Create a url for 443 and 3000
Go to the url for 3000 port and install kasm
Install Chrome or which ever one and press install button
Change the zone port
--- | |
version: "2.1" | |
services: | |
kasm: | |
image: lscr.io/linuxserver/kasm:latest | |
container_name: kasm | |
privileged: true | |
environment: | |
- KASM_PORT=443 | |
- DOCKER_HUB_USERNAME=USER #optional | |
- DOCKER_HUB_PASSWORD=PASS #optional | |
- DOCKER_MTU=1500 #optional | |
volumes: | |
- /kasm/data:/opt | |
- /kasm/profiles:/profiles #optional | |
- /dev/input:/dev/input #optional | |
- /run/udev/data:/run/udev/data #optional | |
ports: | |
- 3000:3000 | |
- 10443:443 | |
restart: unless-stopped |