Skip to content

Commit

Permalink
Merge pull request #37 from tuxmea/update_documentation
Browse files Browse the repository at this point in the history
add documentation on new version schema
  • Loading branch information
tuxmea authored Jan 4, 2024
2 parents d228253 + c7e1456 commit 7ced6a1
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
---

- [Voxpupuli PuppetDB container](#voxpupuli-puppetdb-container)
* [New version schema](#new-version-schema)
* [Configuration](#configuration)
+ [Cert File Locations](#cert-file-locations)
* [How to Release the container](#how-to-release-the-container)
Expand All @@ -22,14 +23,37 @@ The PuppetDB container requires a working postgres container or other suitably
configured PostgreSQL database. With that in place, you can run PuppetDB like
so:

docker run --link postgres:postgres --link puppet:puppet ghcr.io/voxpupuli/puppetdb:7.13.0-v1.0.0
docker run --link postgres:postgres --link puppet:puppet ghcr.io/voxpupuli/puppetdb:7.13.0-v1.2.1

You can change configuration settings by mounting volumes containing
configuration files or by using this image as a base image. For the defaults,
see the [Dockerfile and supporting folders][1].

For more details about PuppetDB, see the [official documentation][2].

## New version schema

The new version schema has the following layout:

```text
<puppet.major>.<puppet.minor>.<puppet.patch>-v<container.major>.<container.minor>.<container.patch>
```

Example usage:

```shell
docker run --link postgres:postgres --link puppet:puppet ghcr.io/voxpupuli/puppetdb:7.13.0-v1.2.1
```

| Name | Description |
| --- | --- |
| puppet.major | Describes the contained major Puppet version (7 or 8) |
| puppet.minor | Describes the contained minor Puppet version |
| puppet.patch | Describes the contained patchlevel Puppet version |
| container.major | Describes the major version of the base container (Ubunutu 22.04) or incompatible changes |
| container.minor | Describes new features or refactoring with backward compatibility |
| container.patch | Describes if minor changes or bugfixes have been implemented |

## Configuration

| Name | Usage / Default |
Expand Down

0 comments on commit 7ced6a1

Please sign in to comment.