Files
Robert Adams cfcde0ceb4 Add MARIADB_ROOT_PASSWORD for MariaDB initialization
Update run-opensim.sh to load os-secrets for DB initialization.
Rename OS_BRANCH to OS_GIT_BRANCH
Rename OS_REPO to OS_GIT_REPO
Eliminate OPENSIM_USER and OPENSIM_USER_PASSWORD from os-secrets as they are not used.
2024-08-13 22:15:07 +00:00

23 lines
786 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 sources to build
OS_GIT_REPO=git://opensimulator.org/git/opensim
OS_GIT_BRANCH=master
# OS_GIT_BRANCH=opensim-rel-0.9.3.8940
OS_BUILDTARGET=Release
OS_SLN=OpenSim.sln
# The container parameters
IMAGE_OWNER=misterblue
IMAGE_NAME=opensim-opensim
IMAGE_VERSION=latest
DOCKER_IMAGE="${IMAGE_OWNER}/${IMAGE_NAME}:${IMAGE_VERSION}"