We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d5e44a + b97fd6e commit 254c154Copy full SHA for 254c154
README.md
@@ -57,6 +57,25 @@ docker run -it \
57
58
Optionally you can set `PUPPETBOARD_URL_PREFIX` env variable to a value like `/puppetboard` to run the app under a URL prefix.
59
60
+You can use the following Puppet Code to have Puppetboard managed by Puppet:
61
+
62
+```puppet
63
+include docker
64
65
+docker::image { 'ghcr.io/voxpupuli/puppetboard': }
66
67
+docker::run { 'puppetboard':
68
+ image => 'ghcr.io/voxpupuli/puppetboard',
69
+ env => [
70
+ 'PUPPETDB_HOST=127.0.0.1',
71
+ 'PUPPETDB_PORT=8080',
72
+ 'PUPPETBOARD_PORT=8088',
73
+ ],
74
+ net => 'host',
75
+}
76
+```
77
78
79
We also provide the Dockerfile so you can build the image yourself:
80
```bash
81
docker build -t puppetboard .
0 commit comments