You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to package this into a reusable docker image that I can run in the background, but the software keeps crashing when using the docker option "-d"
It works fine interactively with"-it" though.
Thanks
The text was updated successfully, but these errors were encountered:
hi, just start the container with screen its a tool where u can send commands from ur shell and run them in a virtual screen that u can close and open without the running process in it get killed...
not sure but i think the docker image thats flying around here is based on ubuntu so you should do the following to have a working fix for ur solution:
install screen with apt:
sudo apt install screen
check the installation with:
screen -v
This should reply the Version number of screen...
Screen usage:
Now all you need to do is add the following infront of your Docker run -it ..... command:
screen -dmS TBot
Just an Example of your Docker command naked:
Docker run -it --name TBot-Ogamed --expose 9090:9090/tcp omlet05/tbot
Hello,
I'm trying to package this into a reusable docker image that I can run in the background, but the software keeps crashing when using the docker option "-d"
It works fine interactively with"-it" though.
Thanks
The text was updated successfully, but these errors were encountered: