17 lines
335 B
YAML
17 lines
335 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
container_name: portainer
|
|
restart: always
|
|
ports:
|
|
- "9000:8000" # HTTP
|
|
- "9443:9443" # HTTPS (推荐)
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer_data:/data
|
|
|
|
volumes:
|
|
portainer_data:
|