16 lines
359 B
YAML
16 lines
359 B
YAML
---
|
|
name: dockup
|
|
services:
|
|
dockup:
|
|
image: ramiuslr/dockup:latest # You should set a fixed tag
|
|
# build: . # Use this for local development setup
|
|
container_name: dockup
|
|
restart: always
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
environment:
|
|
DOCKUP_INTERVAL: 5 # Defaults to 30
|
|
...
|