mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-07 13:40:28 +00:00
14 lines
245 B
Bash
Executable File
14 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
export DOCKER_DEFAULT_PLATFORM=linux/amd64
|
|
export COMPOSE_BAKE=true
|
|
|
|
# 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
|