mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-02-02 17:03:34 +00:00
25 lines
458 B
Markdown
25 lines
458 B
Markdown
# 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
|
|
```
|