File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11build-local /
22.idea /
33bblock-config-local.yml
4+ .volumes
Original file line number Diff line number Diff line change 1+ #! /bin/bash
12# Process building blocks
2- docker run --pull=always --rm --workdir /workspace -v " $( pwd) :/workspace" ghcr.io/opengeospatial/bblocks-postprocess --clean true --base-url http://localhost:9090/register/
3+ if [ -f ' .volumes' ]; then
4+ VOLUMES=$( while read -r line; do
5+ if [[ " ${line} " != /* ]]; then
6+ echo -n " -v ${PWD} /${line} "
7+ else
8+ echo -n " -v $line "
9+ fi
10+ done < .volumes)
11+ fi
12+ docker run --pull=always --rm --workdir /workspace -v " $( pwd) :/workspace" ${VOLUMES} \
13+ ghcr.io/opengeospatial/bblocks-postprocess \
14+ --clean true --base-url http://localhost:9090/register/
Original file line number Diff line number Diff line change 1+ #! /bin/bash
12docker run --rm --pull=always -v " $( pwd) :/register" -p 9090:9090 ghcr.io/ogcincubator/bblocks-viewer
You can’t perform that action at this time.
0 commit comments