Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-compose-dev-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
--skip-log-bin

grafana:
image: devlake.docker.scarf.sh/apache/devlake-dashboard:latest
image: ${DEVLAKE_IMAGE_REGISTRY:-devlake.docker.scarf.sh}/apache/devlake-dashboard:latest
build:
context: grafana/
ports:
Expand Down Expand Up @@ -82,7 +82,7 @@ services:
- mysql

config-ui:
image: devlake.docker.scarf.sh/apache/devlake-config-ui:latest
image: ${DEVLAKE_IMAGE_REGISTRY:-devlake.docker.scarf.sh}/apache/devlake-config-ui:latest
build:
context: "config-ui"
ports:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-dev-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
TZ: UTC

grafana:
image: devlake.docker.scarf.sh/apache/devlake-dashboard:latest
image: ${DEVLAKE_IMAGE_REGISTRY:-devlake.docker.scarf.sh}/apache/devlake-dashboard:latest
build:
context: grafana/
ports:
Expand Down Expand Up @@ -78,7 +78,7 @@ services:
- postgres

config-ui:
image: devlake.docker.scarf.sh/apache/devlake-config-ui:latest
image: ${DEVLAKE_IMAGE_REGISTRY:-devlake.docker.scarf.sh}/apache/devlake-config-ui:latest
build:
context: "config-ui"
ports:
Expand Down
9 changes: 9 additions & 0 deletions env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@
# Lake core #
#############

# Container image registry/prefix for the pre-built devlake-dashboard and
# devlake-config-ui images used by the docker-compose-dev-*.yml files.
# The default is the Scarf gateway (download analytics for the Apache project)
# and is defined in the compose files themselves, so this entry stays commented
# out: the compose services read this file via `env_file`, and an active
# assignment would also inject the variable into the running containers.
# Uncomment and set it (e.g. docker.io) to pull directly from Docker Hub.
# DEVLAKE_IMAGE_REGISTRY=devlake.docker.scarf.sh

# Lake plugin dir, absolute path or relative path
PLUGIN_DIR=bin/plugins
REMOTE_PLUGIN_DIR=python/plugins
Expand Down