1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-03-21 21:17:05 +02:00

add portainer

This commit is contained in:
kev 2017-03-23 16:34:07 +08:00
parent bd4db19abb
commit ce71b394b1
4 changed files with 36 additions and 0 deletions

View File

@ -242,6 +242,7 @@ A collection of delicious docker recipes.
- [x] neo4j
- [x] owncloud
- [x] phpmyadmin
- [x] portainer/portainer :+1:
- [x] postgres
- [x] registry
- [x] rocket.chat

19
portainer/README.md Normal file
View File

@ -0,0 +1,19 @@
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
portainer:
image: portainer/portainer
ports:
- "9000:9000"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: always
```
[1]: http://portainer.io/

View File

@ -0,0 +1,8 @@
portainer:
image: portainer/portainer:arm
ports:
- "9000:9000"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: always

View File

@ -0,0 +1,8 @@
portainer:
image: portainer/portainer
ports:
- "9000:9000"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: always