Portainer
Playground
Using fy-infrastructure.
Architecture
- Portainer consists of two elements, the Portainer Server, and the Portainer Agent.
- Addionally, edge agent, an agent that needed for remote, sending the data within different network
Installing
I used this blog as reference (opens in a new tab)
- Create docker volume
docker volume create fy-portainer-data
- Run with docker
docker run -d -p 18000:8000 -p 1443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v fy-portainer-data:/data portainer/portainer-ce:latest
-
After that you should create a password,
-
Then, you could visit the homepage. You should not do anything to manage your own local docker environment.
Features
-
Manage Container
-
View Container Details
-
View Container Logs
-
Permission Role Based (Business-only)
Deploy with Stack
Stack is docker compose.
-
To deploy with stack you could open your
environment > stack > add stack
-
Then, you can paste the docker compose file here