Skip to content

Commit

Permalink
Merge pull request #41 from tuxmea/new_version_schema
Browse files Browse the repository at this point in the history
use new version schema
  • Loading branch information
tuxmea authored Jan 3, 2024
2 parents dd69830 + b0d5aeb commit f17774a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
build_context: puppetserver
buildfile: puppetserver/Dockerfile
tags: |
ghcr.io/${{ github.repository }}:${{ github.ref_name }}-${{ matrix.release }}
ghcr.io/${{ github.repository }}:${{ matrix.version }}-${{ github.ref_name }}
ghcr.io/${{ github.repository }}:latest
docker.io/${{ github.repository }}:${{ github.ref_name }}-${{ matrix.release }}
docker.io/${{ github.repository }}:${{ matrix.version }}-${{ github.ref_name }}
docker.io/${{ github.repository }}:latest
- name: Update Docker Hub Description
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This project hosts the Dockerfile and the required scripts to build a Puppet Ser
You can run a copy of Puppet Server with the following Docker command:

```bash
docker run --name puppet --hostname puppet ghcr.io/voxpupuli/container-puppetserver:v1.0.0-7
docker run --name puppet --hostname puppet ghcr.io/voxpupuli/container-puppetserver:7.13.0-v1.1.0
```

Although it is not strictly necessary to name the container `puppet`, this is
Expand All @@ -30,7 +30,7 @@ on that hostname by default.
If you would like to start the Puppet Server with your own Puppet code, you can
mount your own directory at `/etc/puppetlabs/code`:

docker run --name puppet --hostname puppet -v ./code:/etc/puppetlabs/code/ ghcr.io/voxpupuli/container-puppetserver:v1.0.0-7
docker run --name puppet --hostname puppet -v ./code:/etc/puppetlabs/code/ ghcr.io/voxpupuli/container-puppetserver:7.13.0-v1.1.0

For compose file see: [CRAFTY](https://github.com/voxpupuli/crafty/tree/main/puppet/oss)

Expand Down Expand Up @@ -76,7 +76,7 @@ These scripts will be executed at the end of the entrypoint script, before the s

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.
To prevent this, you can persist the default cadir, `/etc/puppetlabs/puppetserver/ca`.
For example, `docker run -v $PWD/ca-ssl:/etc/puppetlabs/puppetserver/ca ghcr.io/voxpupuli/container-puppetserver:v1.0.0-7`.
For example, `docker run -v $PWD/ca-ssl:/etc/puppetlabs/puppetserver/ca ghcr.io/voxpupuli/container-puppetserver:7.13.0-v1.1.0`.

## How to Release the container

Expand Down

0 comments on commit f17774a

Please sign in to comment.