SSHwifty - Web ssh and telnet client
Summary
Web client to use ssh and telnet in your browser.
Installation via docker-compose behind traefik proxy
sshwifty:
image: niruix/sshwifty:latest
labels:
- "traefik.enable=true"
- "traefik.http.routers.ssh.rule=Host(`ssh.domain.tld`)"
- "traefik.http.routers.ssh.entrypoints=websecure"
- "traefik.http.routers.ssh.tls=true"
- "traefik.http.services.ssh.loadBalancer.server.port=8182"
- "traefik.docker.network=traefik"
networks:
- traefik
restart: always
No Comments