diff --git a/README.md b/README.md index 8b6c4f4..ed9d7d1 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Docker Managers - [Diun](apps/docker/diun.md) -- [nginx-proxy-manager](apps/docker/npm.md) +- [Portainer](apps/docker/portainer.md) - [WatchTower](apps/docker/watch-tower.md) @@ -328,9 +328,10 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Reverse proxy & SSO - [Authelia](apps/reverse-proxy-sso/authelia.md) -- [Traefik](apps/reverse-proxy-sso/traefik.md) - [Caddy](https://caddyserver.com/) 🔗 - very good web server with reverse-proxy & automatic https. -- [Nginx Proxy Manager](https://nginxproxymanager.com/) 🔗 - another nice solution based on the battle-tested & probably the most popular web-server - nginx. It has a pretty UI that allows to manage the services. +- [nginx-proxy-manager](apps/reverse-proxy-sso/npm.md) +- [Traefik](apps/reverse-proxy-sso/traefik.md) + diff --git a/apps/docker/portainer.md b/apps/docker/portainer.md new file mode 100644 index 0000000..9608ecd --- /dev/null +++ b/apps/docker/portainer.md @@ -0,0 +1,24 @@ +# Portainer +A nice UI for managing docker/kubernetes/swarm containers. + +
+ +- [Homepage](https://www.portainer.io) +- [Github repo](https://github.com/portainer/portainer) + + +## docker-compose.yml +```yml +--- +services: + portainer: + image: portainer/portainer-ce + container_name: portainer + restart: unless-stopped + ports: + - 8000:8000 + - 9443:9443 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./data:/data +``` diff --git a/apps/docker/npm.md b/apps/reverse-proxy-sso/npm.md similarity index 100% rename from apps/docker/npm.md rename to apps/reverse-proxy-sso/npm.md