[GH-ISSUE #1207] How to uninstall NPM? #987

Closed
opened 2026-02-26 06:35:19 +03:00 by kerem · 1 comment
Owner

Originally created by @joeyboli on GitHub (Jun 27, 2021).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1207

How do I remove NPM from my server?

Originally created by @joeyboli on GitHub (Jun 27, 2021). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1207 How do I remove NPM from my server?
kerem 2026-02-26 06:35:19 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@danner26 commented on GitHub (Jul 5, 2021):

If you are using docker/docker-compose you can run docker stop jc21/nginx-proxy-manager or docker stop CONTAINER_ID which you can acquire from docker ps
If you cd to the docker-compose folder you can run docker-compose down to turn off the associated instances

To remove the container/image/volumes:
To remove the associated images, run docker rmi jc21/nginx-proxy-manager jc21/mariadb-aria
If you have other versions saved, you can find them by usingdocker images -a

To remove the associated containers, run docker rm jc21/mariadb-aria:latest jc21/nginx-proxy-manager:latest
If you have other versions saved, you can find them by using docker ps -a

To remove the associated volumes, you can run docker volume rm jc21/nginx-proxy-manager:latest jc21/mariadb-aria:latest
If you have other versions saved, you can find them by using docker volume ls

Then the only thing left to do is to remove the associated data files. If you used docker-compose then you can find the data file locations in the yml file under the volumes: tag below both db and app

<!-- gh-comment-id:874179668 --> @danner26 commented on GitHub (Jul 5, 2021): If you are using docker/docker-compose you can run `docker stop jc21/nginx-proxy-manager` or `docker stop CONTAINER_ID` which you can acquire from `docker ps` If you cd to the docker-compose folder you can run docker-compose down to turn off the associated instances **To remove the container/image/volumes:** To remove the associated images, run `docker rmi jc21/nginx-proxy-manager jc21/mariadb-aria` If you have other versions saved, you can find them by using`docker images -a` To remove the associated containers, run `docker rm jc21/mariadb-aria:latest jc21/nginx-proxy-manager:latest` If you have other versions saved, you can find them by using `docker ps -a` To remove the associated volumes, you can run `docker volume rm jc21/nginx-proxy-manager:latest jc21/mariadb-aria:latest` If you have other versions saved, you can find them by using `docker volume ls` Then the only thing left to do is to remove the associated data files. If you used docker-compose then you can find the data file locations in the yml file under the `volumes:` tag below both `db` and `app`
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#987
No description provided.