Add support for config ui

This commit is contained in:
2023-12-13 19:23:22 +07:00
parent d5f4f5d213
commit 8ef3049563
4 changed files with 18 additions and 6 deletions

View File

@@ -11,4 +11,8 @@ build:
@echo 'Starting docker buildx push'
docker buildx build --platform linux/arm64,linux/arm/v7 -f Dockerfile.arm -t ${DOCKER_IMAGE_ARM} --push .
run-test:
@echo 'Starting docker run'
docker run --rm -e PORT=5000 -e HIGHCHARTS_NO_LOGO=true -e HIGHCHARTS_UI_ENABLE=true -e HIGHCHARTS_UI_ROUTE=/ui --name hc-server -p 8080:5000 ${DOCKER_IMAGE}
.PHONY:build