Fix ttyd container - use alpine image with busybox telnet

This commit is contained in:
2026-02-16 03:19:20 +00:00
parent e846a9c1cb
commit 058247465a
+2 -2
View File
@@ -25,14 +25,14 @@ services:
- SBBSCTRL=/sbbs-data/ctrl - SBBSCTRL=/sbbs-data/ctrl
ttyd: ttyd:
image: tsl0922/ttyd:latest image: tsl0922/ttyd:alpine
container_name: synchronet-web-terminal container_name: synchronet-web-terminal
restart: unless-stopped restart: unless-stopped
networks: networks:
- npm-network - npm-network
ports: ports:
- "7681:7681" - "7681:7681"
command: telnet synchronet 23 command: sh -c "apk add --no-cache busybox-extras && ttyd -p 7681 telnet synchronet 23"
depends_on: depends_on:
- synchronet - synchronet