mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-03-23 21:19:24 +02:00
add portainer
This commit is contained in:
parent
bd4db19abb
commit
ce71b394b1
@ -242,6 +242,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] neo4j
|
- [x] neo4j
|
||||||
- [x] owncloud
|
- [x] owncloud
|
||||||
- [x] phpmyadmin
|
- [x] phpmyadmin
|
||||||
|
- [x] portainer/portainer :+1:
|
||||||
- [x] postgres
|
- [x] postgres
|
||||||
- [x] registry
|
- [x] registry
|
||||||
- [x] rocket.chat
|
- [x] rocket.chat
|
||||||
|
19
portainer/README.md
Normal file
19
portainer/README.md
Normal 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/
|
8
portainer/arm/docker-compose.yml
Normal file
8
portainer/arm/docker-compose.yml
Normal 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
|
8
portainer/docker-compose.yml
Normal file
8
portainer/docker-compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user