mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-09 14:50:59 +00:00
13 lines
290 B
YAML
13 lines
290 B
YAML
version: "3"
|
|
services:
|
|
|
|
############# Portainer: container supervision with a web UI
|
|
portainer:
|
|
image: portainer/portainer:latest
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./data/portainer:/data
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- nginx
|