bugy / script-server

Web UI for your scripts with execution management
Other
1.59k stars 247 forks source link

Cant SSH from script #747

Open ChimorinNL opened 4 months ago

ChimorinNL commented 4 months ago

The docker container doenst include SSH. My scripts use SSH to connect to a machine, then execute a command. Is it possible to add SSH?

IvanLi-CN commented 4 months ago

I solved this problem by writing my own Dockerfile for adding the ssh client.

FROM bugy/script-server:latest

RUN apt-get update
RUN apt-get install -y openssh-client
ChimorinNL commented 4 months ago

IvanLi

Thank you! I was able to create it too.