mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-08 06:00:29 +00:00
- SQLAlchemy event listener on orm.User.name intercepts ALL renames - Removed broken SyncedUserAPIHandler (extra_handlers doesn't override) - Removed RenameUserHandler (redundant with event listener) - Added version display in browser console (styled badge) - Build scripts source project.env for VERSION
14 lines
262 B
Bash
Executable File
14 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
export DOCKER_DEFAULT_PLATFORM=linux/amd64
|
|
export COMPOSE_BAKE=false
|
|
|
|
# Source project.env to get VERSION
|
|
set -a
|
|
. ../project.env
|
|
set +a
|
|
|
|
# Export VERSION for docker compose build
|
|
export VERSION
|
|
|
|
docker compose -f ../compose.yml build --progress=plain
|