mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
relog-web: Make time limit configurable
This commit is contained in:
11
Makefile
11
Makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user