Matt Hook
Matt Hook
@Nick-Portainer I'm noting that it already seems to be fixed on develop (2.23.0). Awesome!
@Nick-Portainer still here in BE 2.30. This is the offending line. https://github.com/portainer/portainer/blob/24ff7a79112712e80ca2dedebc55f46f64510e16/app/react/kubernetes/applications/ConsoleView/ConsoleView.tsx#L81 Fix: ``` socket.send('echo -e "\\033[2J\\033[H"\n'); ``` Which is what was applied here: https://github.com/portainer/portainer/blob/24ff7a79112712e80ca2dedebc55f46f64510e16/app/docker/views/containers/console/containerConsoleController.js#L185 Although I originally also turned...
@Nick-Portainer I think he means the up arrow shell history. This might work. i.e. A space character before running each command https://stackoverflow.com/questions/8473121/execute-a-command-without-keeping-it-in-history
Or add "history -c" after all that stuff. Or just remove the bash_history file.
Ok I seems I need to install watcher. Why I went wrong here is because the documentation says `Install "Optional" Dependencies.` Since the title says "Optional". I skipped it. But...
I got a little further. ``` ❯ CGO_CFLAGS="-I/home/hookenz/franken/php-8.2.25/main -I/home/hookenz/franken/php-8.2.25/Zend -I/home/hookenz/franken/php-8.2.25 -I /home/hookenz/franken/php-8.2.25/TSRM" go build . # frank /snap/go/10743/pkg/tool/linux_amd64/link: running gcc failed: exit status 1 /usr/bin/gcc -m64 -o $WORK/b001/exe/a.out -Wl,--export-dynamic-symbol=_cgo_panic -Wl,--export-dynamic-symbol=_cgo_topofstack...
Ok, I've solved it. I need to "install" the PHP binary and all it's development files with. So after the `./configure` step. `sudo make install`. Then simply run `go build...
Ok, this turned out to be an issue with the kubernetes dns or something. Hence the timeouts. Restarting fixed it. But herein lies the problem. There was nothing useful in...
@kale1d0code, are you always shelling into the same container and does that container have a shell binary (e.g. /bin/sh)? some containers might not contain a shell and will always fail....
@kale1d0code pass it on to @Nick-Portainer. I don't work for Portainer anymore, but I am familiar with that bit of the code as I rewrote parts of the docker side...