publish to container repo

This commit is contained in:
2024-06-08 17:52:56 -07:00
parent ec817b0640
commit cb3840e8ef
2 changed files with 5 additions and 2 deletions

View File

@@ -9,8 +9,7 @@ off-grid.
Get the server up and running:
```
docker build --no-cache -t openkj-server .
docker run -d --name openkj-songbook -p 80:8000 -v openkj-db:/db -e VENUE="City Karaoke" --rm openkj-server
docker run -d --name openkj-songbook -p 80:8000 -v openkj-db:/db -e VENUE="City Karaoke" --rm cr.gitlab.alfter.us:443/salfter/openkj-request-docker
```
(customize VENUE to suit)

4
build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
TAG=cr.gitlab.alfter.us:443/salfter/openkj-request-docker:latest
docker build --no-cache -t $TAG . && docker push $TAG