websoft9/docker/w9portainer/docker-compose.yml
2023-04-20 09:11:36 +00:00

21 lines
No EOL
383 B
YAML

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