mirror of
https://github.com/Misterblue/opensim-docker.git
synced 2026-07-31 04:02:17 +00:00
opensim-ngc: follow rename of repository from "OpenSim-Sasquatch.git" to "OpenSim-Tranquility.git" opensim-ngc: change version tag of docker image to "OSVERSION-OSCOMMITSHORT" since OSGITCOMMIT is not very informative Bump version.
26 lines
925 B
Plaintext
26 lines
925 B
Plaintext
# Overall parameters for building and storing the OpenSimulator image.
|
|
# This file is 'source'ed in Bash scripts and used by docker-compose.
|
|
|
|
# While nearly everything can be moved into this file, these are the
|
|
# top level build and run configurations but most of the configuration
|
|
# happens in the config-$OS_CONFIG directory.
|
|
|
|
# NOTE: the assignment format is restricted so it works as a Bash
|
|
# assignment file and a docker-compose env-file
|
|
|
|
# the configuration to run with. This is prepended with "config-" to get the directory
|
|
OS_CONFIG=${OS_CONFIG:-standalone}
|
|
|
|
# The sources to build
|
|
OS_GIT_REPO=https://github.com/OpenSim-NGC/OpenSim-Tranquillity.git
|
|
OS_GIT_BRANCH=master
|
|
# OS_GIT_BRANCH=opensim-rel-0.9.3.9037
|
|
OS_BUILDTARGET=Release
|
|
OS_SLN=OpenSim.sln
|
|
|
|
# The container parameters
|
|
IMAGE_OWNER=misterblue
|
|
IMAGE_NAME=opensim-ngc
|
|
IMAGE_VERSION=latest
|
|
DOCKER_IMAGE="${IMAGE_OWNER}/${IMAGE_NAME}:${IMAGE_VERSION}"
|