Skip to content

Commit

Permalink
conditionally enabled dbx
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Funkhouser <[email protected]>
  • Loading branch information
golanglemonade committed Aug 28, 2024
1 parent 98f26ae commit 3e6ec28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 0 additions & 4 deletions config/config-aio.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,3 @@ email:
testing: false
consoleUrl:
consoleBase: "https://console.theopenlane.io"

# analytics settings
posthog:
enabled: true
6 changes: 4 additions & 2 deletions docker/all-in-one/docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ done

/bin/redis-server --save 20 1 --loglevel warning --daemonize yes

# run the dbx service in the background
/bin/dbx serve --debug --pretty &!
# run the dbx service in the background if enabled
if [ $CORE_DBX_ENABLED = "true" ]; then
/bin/dbx serve --debug --pretty &!
fi

# run the core service in the foreground
/bin/core serve --debug --pretty

0 comments on commit 3e6ec28

Please sign in to comment.