CorentinTh / it-tools

Collection of handy online tools for developers, with great UX.
https://it-tools.tech
GNU General Public License v3.0
23.1k stars 2.8k forks source link

IT-Tools keep showing when I go to 8080 port of my localhost even after deleting it from my docker. #1389

Open Lowitle opened 5 days ago

Lowitle commented 5 days ago

Describe the bug

Idk why, but IT-Tools keep showing when I go to 8080 port of my localhost even after deleting it from my docker.

I installed it using the install command: docker run -d --name it-tools --restart unless-stopped -p 8080:80 corentinth/it-tools:latest

I installed it without thinking about it, but now I want to leave 8080 port for another app from my Synology Nas store and it just pops up the it-tools.

What is happening here? If I stop container, delete the container, even I deleted the image... It should stop showing. I don't understand.

What happened?

A bug happened!

System information

Synology NAS DS923+ Using Container Manager (Native Docker app for Synology)

Where did you encounter the bug?

Other (installations, docker, etc.)

christiangoeschel commented 3 days ago

Wild guess, if docker ps --all -f status=running shows no output, you might want to have a look at which process is listening on port 8080 with sudo ss -tulpan .

If you see 'docker-proxy' in the 'Process' column that means that Docker is still listening on it, however anything else indicates another process is and you'd eventually want to kill it.

Otherwise, I'd clear cache and maybe even turn it off completely for your browser while you troubleshoot this.

Lowitle commented 3 days ago

sudo ss -tulpan didn't work on my Synology Nas, it said "command not found"

I did prune and aparently solved it. No idea what was causing it.

Thanks for the answer :-)