simple putty on (web) secured with password
YAML:
services:
web-terminal:
image: jlesage/putty:latest
container_name: putty-web
ports:
- "5800:5800"
environment:
- PUID=1000
- PGID=10
- TZ=Asia/Riyadh
- KEEP_APP_RUNNING=1
- VNC_PASSWORD=YOUR PASSWORD # yuor password to secure putty
volumes: # you can map whatever location you like
- /volume1/docker/putty/config:/config:rw
- /volume1/docker:/volume1/docker
restart: always
SSH ready from web browser ![]()


