1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/portainer/README.md

23 lines
490 B
Markdown
Raw Normal View History

2017-03-23 08:34:07 +00:00
portainer
=========
[Portainer][1] is an open-source lightweight management UI which allows you to easily manage your Docker host or Swarm cluster.
## docker-compose.yml
```yaml
2021-09-01 09:12:44 +00:00
version: "3.8"
services:
portainer:
image: portainer/portainer-ce
ports:
- "8000:8000"
- "9000:9000"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
2017-03-23 08:34:07 +00:00
```
2021-09-01 09:12:44 +00:00
[1]: https://documentation.portainer.io/v2.0/deploy/ceinstalldocker/