Skip to content

Commit

Permalink
docs(docker README): Update docker file with SOFT_SERVE_INITIAL_ADMIN…
Browse files Browse the repository at this point in the history
…_KEYS env variable for both docker and compose examples
  • Loading branch information
CRBroughton authored and aymanbagabas committed Jul 31, 2024
1 parent 43f087f commit ca7c2bb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ docker run \
--publish 23232:23232 \
--publish 23233:23233 \
--publish 9418:9418 \
-e SOFT_SERVE_INITIAL_ADMIN_KEYS="YOUR_ADMIN_KEY_HERE" \
--restart unless-stopped \
charmcli/soft-serve:latest
```
Expand All @@ -38,6 +39,8 @@ services:
- 23232:23232
- 23233:23233
- 9418:9418
environment:
SOFT_SERVE_INITIAL_ADMIN_KEYS: "YOUR_ADMIN_KEY_HERE"
restart: unless-stopped
```
Expand Down

0 comments on commit ca7c2bb

Please sign in to comment.