Skip to content

Commit

Permalink
docs: Docker CLI example
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored May 22, 2024
1 parent df7d4de commit c9ccc02
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,7 @@ services:
Via Docker CLI:
```bash
docker run -d \
-p 80:80 --name munin \
-v /munin/lib:/var/lib/munin \
-v /munin/log:/var/log/munin \
-v /munin/conf:/etc/munin/munin-conf.d \
-v /munin/plugin:/etc/munin/plugin-conf.d \
-e "NODES=node1:10.0.0.101 node2:10.0.0.102" \
dockurr/munin
docker run -it --rm -p 80:80 -e "NODES=node1:10.0.0.101 node2:10.0.0.102" --stop-timeout 60 dockurr/munin
```

Access the container at `http://host/munin/`
Expand Down

0 comments on commit c9ccc02

Please sign in to comment.