Portainer¶
Portainer is a lightweight sexy UI for visualizing your docker environment. It also happens to integrate well with Docker Swarm clusters, which makes it a great fit for our stack.
This is a "lightweight" recipe, because Portainer is so "lightweight". But it is shiny...
Ingredients¶
- Docker swarm cluster with persistent shared storage
- Traefik configured per design
- DNS entry for the hostname you intend to use, pointed to your keepalived IP
Preparation¶
Setup data locations¶
Create a folder to store portainer's persistent data:
1 | mkdir /var/data/portainer |
Setup Docker Swarm¶
Create a docker swarm config file in docker-compose syntax (v3), something like this:
Tip
I share (with my patreon patrons) a private "premix" git repository, which includes necessary docker-compose and env files for all published recipes. This means that patrons can launch any recipe with just a git pull
and a docker stack deploy
👍
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | version: "3" services: app: image: portainer/portainer volumes: - /var/run/docker.sock:/var/run/docker.sock - /var/data/portainer:/data networks: - traefik_public deploy: labels: - traefik.frontend.rule=Host:portainer.funkypenguin.co.nz - traefik.port=9000 placement: constraints: [node.role == manager] command: -H unix:///var/run/docker.sock networks: traefik_public: external: true |
Serving¶
Launch Portainer stack¶
Launch the Portainer stack by running docker stack deploy portainer -c <path -to-docker-compose.yml>
Log into your new instance at https://YOUR-FQDN. You'll be prompted to set your admin user/password.
Chef's Notes 📓¶
- I wanted to use oauth2_proxy to provide an additional layer of security for Portainer, but the proxy seems to break the authentication mechanism, effectively making the stack so secure, that it can't be logged into!
Tip your waiter (support me) 👏¶
Did you receive excellent service? Want to make your waiter happy? (..and support development of current and future recipes!) See the support page for (free or paid) ways to say thank you! 👏
Flirt with waiter (subscribe) 💌¶
Want to know now when this recipe gets updated, or when future recipes are added? Subscribe to the RSS feed, or leave your email address below, and we'll keep you updated. (double-opt-in, no monkey business, no spam either - check the archive for proof!)