add portainer; move nginx-p-m to the correct group

This commit is contained in:
Dziad Borowy
2022-09-17 20:34:14 +01:00
parent b6e63b4097
commit e8d940b36d
3 changed files with 28 additions and 3 deletions

24
apps/docker/portainer.md Normal file
View File

@@ -0,0 +1,24 @@
# Portainer
A nice UI for managing docker/kubernetes/swarm containers.
<br>
- [Homepage](https://www.portainer.io)
- [Github repo](https://github.com/portainer/portainer)
## docker-compose.yml
```yml
---
services:
portainer:
image: portainer/portainer-ce
container_name: portainer
restart: unless-stopped
ports:
- 8000:8000
- 9443:9443
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
```