adding portainer
This commit is contained in:
parent
9157a34ede
commit
0bb6c53f30
1 changed files with 15 additions and 0 deletions
15
portainer/docker-compose.yml
Normal file
15
portainer/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
services:
|
||||
portainer:
|
||||
image: portainer/portainer-ce@sha256:3230606275b0a2a109afd59c881e5b187bed6162ea8f1783f77b077fe37f42d7
|
||||
container_name: portainer
|
||||
command: -H unix:///var/run/docker.sock
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9443:9443"
|
||||
volumes:
|
||||
- "/var/run/docker.sock:/var/run/docker.sock"
|
||||
- "portainer_data:/data"
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
portainer_data:
|
Reference in a new issue