diff --git a/endlessh/compose.yml b/endlessh/compose.yml new file mode 100644 index 0000000..1ed786a --- /dev/null +++ b/endlessh/compose.yml @@ -0,0 +1,19 @@ +services: + endlessh: + image: lscr.io/linuxserver/endlessh:latest + container_name: endlessh + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - MSDELAY=10000 #optional + - MAXLINES=32 #optional + - MAXCLIENTS=4096 #optional + - LOGFILE=true #optional + - BINDFAMILY= #optional + volumes: + - /home/fabian/endlessh/config:/config #optional + ports: + - 22:2222 + restart: unless-stopped +