Files
GitTest/portainer.yml

20 lines
503 B
YAML

version: '3'
networks:
infra_out:
external: true
services:
portainer:
image: portainer/portainer-ce # This line was modified in 1clowd branch
container_name: portainer
volumes:
- ~/docker_volumes/portainer/data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "9900:9000" # This line was modified in 1clowd branch
networks:
infra_out:
ipv4_address: 10.23.0.211 # This line was modified in 1clowd branch
restart: unless-stopped