20 lines
388 B
YAML
20 lines
388 B
YAML
# bob
|
|
name: dokemon
|
|
|
|
volumes:
|
|
dokemondata:
|
|
name: dokemondata
|
|
external: true
|
|
|
|
services:
|
|
dokemon:
|
|
container_name: dokemon
|
|
image: productiveops/dokemon:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 32519:9090
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /home/pleb/.docker/config.json:/root/.docker/config.json
|
|
- dokemondata:/data
|