mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-12-28 18:09:03 +01:00
8b2623aff3
Fixes #27
18 lines
317 B
YAML
18 lines
317 B
YAML
version: '3'
|
|
|
|
volumes:
|
|
portainer-data:
|
|
driver: local
|
|
|
|
services:
|
|
app:
|
|
container_name: portainer
|
|
image: 'portainer/portainer-ce:latest'
|
|
ports:
|
|
- '9000:9000'
|
|
- '9443:9443'
|
|
- '8000:8000'
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer-data:/data
|