websoft9/docker/w9portainer/docker-compose.yml
2023-07-19 12:12:30 +08:00

20 lines
343 B
YAML

version: "3.8"
services:
portainer:
image: portainer/portainer-ce:${APP_VERSION}
container_name: ${APP_NAME}
restart: unless-stopped
env_file: .env
volumes:
- portainer:/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
default:
name: ${APP_NETWORK}
external: true
volumes:
portainer: