Skip to content

Commit

Permalink
Improve Docker setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Rainer Stuetz committed Jun 11, 2022
1 parent 871d096 commit 746be9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.15
LABEL maintainer="contact@graphsense.info"
FROM alpine:3.16
LABEL maintainer="contact@iknaio.com"

ENV WORKDIR=/app

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ version: "3.1"
services:

graphsense-dashboard:
image: graphsense-dashboard
container_name: graphsense-dashboard
hostname: graphsense-dashboard
image: ${DOCKER_IMAGE_NAME:-graphsense-dashboard}
container_name: ${DOCKER_CONTAINER_NAME:-graphsense-dashboard}
hostname: ${DOCKER_HOSTNAME:-graphsense-dashboard}
build:
context: .
dockerfile: ./Dockerfile
Expand Down
4 changes: 4 additions & 0 deletions env.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
DOCKER_IMAGE_NAME=
DOCKER_CONTAINER_NAME=
DOCKER_HOSTNAME=

DASHBOARD_PORT=8080
REST_URL= # point to graphsense rest service

Expand Down

0 comments on commit 746be9a

Please sign in to comment.