You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[How to Release the container](#how-to-release-the-container)
16
16
-[How to contribute](#how-to-contribute)
17
17
@@ -22,7 +22,7 @@ This project hosts the Containerfile and the required scripts to build a OpenVox
22
22
You can run a copy of Puppet Server with the following Docker command:
23
23
24
24
```bash
25
-
podman run --name openvox --hostname openvox ghcr.io/OpenVoxProject/openvoxserver:8.8.0-latest
25
+
podman run --name openvox --hostname openvox ghcr.io/openvoxproject/openvoxserver:8.8.0-latest
26
26
```
27
27
28
28
Although it is not strictly necessary to name the container `openvox`, this is
@@ -33,7 +33,7 @@ If you would like to start the OpenVox Server with your own Puppet code, you can
33
33
mount your own directory at `/etc/puppetlabs/code`:
34
34
35
35
```shell
36
-
podman run --name openvox --hostname openvox -v ./code:/etc/puppetlabs/code ghcr.io/OpenVoxProject/openvoxserver:8.8.0-latest
36
+
podman run --name openvox --hostname openvox -v ./code:/etc/puppetlabs/code ghcr.io/openvoxproject/openvoxserver:8.8.0-latest
37
37
```
38
38
39
39
For compose file see: [CRAFTY](https://github.com/voxpupuli/crafty/tree/main/puppet/oss)
@@ -126,22 +126,22 @@ You can also create sub-directories in `/docker-custom-entrypoint.d/` for script
126
126
-`/docker-custom-entrypoint.d/sigterm-handler/` - scripts that run when the container receives a SIGTERM signal.
127
127
-`/docker-custom-entrypoint.d/post-execution/` - scripts that run after the openvoxserver service has stopped.
128
128
129
-
## Persistance
129
+
## Persistence
130
130
131
131
If you plan to use the in-server CA, restarting the container can cause the server's keys and certificates to change, causing agents and the server to stop trusting each other.
132
132
To prevent this, you can persist the default cadir, `/etc/puppetlabs/puppetserver/ca`.
133
133
For example:
134
134
135
135
```shell
136
-
podman run -v $PWD/ca-ssl:/etc/puppetlabs/puppetserver/ca ghcr.io/voxpupuli/puppetserver:8.6.1-latest
136
+
podman run -v $PWD/ca-ssl:/etc/puppetlabs/puppetserver/ca ghcr.io/openvoxproject/openvoxserver:8.6.1-latest
0 commit comments