SOLDR modules files to store it into global repository
3.1K
There is using next environment variables to run the container:
DB_HOST - Global MySQL IP address or domainDB_PORT - Global MySQL TCP port to connectDB_USER - Global MySQL username to connectDB_PASS - Global MySQL password to connectDB_NAME - Global MySQL database name to connectMINIO_ENDPOINT - URL to connect to Minio S3 storage (including port and schema)MINIO_ACCESS_KEY - Access key to connect to Minio S3 storageMINIO_SECRET_KEY - Secret key to connect to Minio S3 storageMINIO_BUCKET_NAME - Global S3 bucket name to connect and copy modules filesCommand to run container (to remote services):
docker run --add-host mysql.local:10.0.0.1 --add-host minio.local:10.0.0.2 --rm --env-file docker_env.list -ti local/modules
Or link to local running containers:
docker run --link=vx_mysql:mysql.local --link=vx_minio:minio.local --net soldr_vx-stand --rm --env-file docker_env.list -ti local/modules
File docker_env.list by default:
DB_HOST=mysql.local
DB_PORT=3306
DB_USER=vxcontrol
DB_PASS=password
DB_NAME=vx_global
MINIO_ENDPOINT=http://minio.local:9000
MINIO_ACCESS_KEY=accesskey
MINIO_SECRET_KEY=secretkey
MINIO_BUCKET_NAME=soldr-modules
Content type
Image
Digest
sha256:2eca596ca…
Size
159.5 MB
Last updated
over 3 years ago
docker pull vxcontrol/soldr-modules