Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docs #58

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ docker pull ghcr.io/canonical/gocert:latest
docker run -d --name gocert -p 3000:3000 ghcr.io/canonical/gocert:latest
# Push the 3 required files and restart the workload
docker exec gocert /usr/bin/pebble mkdir -p /etc/gocert/config
docker exec gocert /usr/bin/pebble mkdir -p /var/lib/gocert/database
docker cp key.pem gocert:/etc/gocert/config/key.pem
docker cp cert.pem gocert:/etc/gocert/config/cert.pem
docker cp config.yaml gocert:/etc/gocert/config/config.yaml
Expand All @@ -60,4 +61,4 @@ You will need to build the frontend first, and then install gocert with Go.
```bash
npm install --prefix ui && npm run build --prefix ui && go install ./...
gocert -config ./config.yaml
```
```
Loading