mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-06-11 14:26:17 +00:00
17 lines
369 B
YAML
17 lines
369 B
YAML
|
|
services:
|
||
|
|
meshdash:
|
||
|
|
image: rusjpmd/meshdash-runner:latest
|
||
|
|
container_name: meshdash
|
||
|
|
restart: always
|
||
|
|
network_mode: host
|
||
|
|
privileged: true
|
||
|
|
environment:
|
||
|
|
MD_SETUP_KEY: "YOUR_API_KEY_HERE"
|
||
|
|
MD_SETUP_URL: "https://meshdash.co.uk/user_setup_core.php"
|
||
|
|
volumes:
|
||
|
|
- /dev:/dev
|
||
|
|
- meshdash_data:/app/data
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
meshdash_data:
|