mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-08 16:14:08 +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
|