You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
336 B
YAML
19 lines
336 B
YAML
---
|
|
version: '3.2'
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce
|
|
container_name: portainer
|
|
ports:
|
|
- 9000:9000
|
|
volumes:
|
|
- portainer_data:/data
|
|
- some_volume:/some_dir
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
volumes:
|
|
some_volume:
|
|
portainer_data:
|
|
external: true
|
|
name: portainer_data
|