relog-web: Make time limit configurable

This commit is contained in:
2022-09-08 11:35:11 -05:00
parent bae39a4ff4
commit d84b74a8a7
3 changed files with 14 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
VERSION := 0.5
PKG := ghcr.io/anl-ceeesa/relog-web
clean:
rm -rfv build Manifest.toml test/Manifest.toml deps/formatter/build deps/formatter/Manifest.toml
@@ -8,7 +9,15 @@ docs:
rsync -avP --delete-after docs/build/ ../docs/$(VERSION)/
docker-build:
docker build --tag relog-web:$(VERSION) .
docker build --tag $(PKG):$(VERSION) .
docker build --tag $(PKG):latest .
docker-push:
docker push $(PKG):$(VERSION)
docker push $(PKG):latest
docker-run:
docker run -it --rm --name relog --volume $(PWD)/jobs:/app/jobs --publish 8000:8080 $(PKG):$(VERSION)
format:
cd deps/formatter; ../../juliaw format.jl