mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
12 lines
323 B
YAML
12 lines
323 B
YAML
version: "3"
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ee:2.21.1
|
|
ports:
|
|
- 9000:9000
|
|
volumes:
|
|
- /share/docker_data/portainer/portainer-data/:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: always
|
|
environment:
|
|
- DOCKER_CONFIG=/data/docker_config/config.jsona |