-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.container.cfg
64 lines (38 loc) · 1.66 KB
/
sample.container.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
# used in container name, codebase directory (in dev environment), db name, db user, S3 folder, and volume name
INSTALLATION_NAME=imaging_1
# each image name is comprised of 3 parts: <VERTICAL>-<VERTICAL_VERSION>-<ENVIRONMENT>
# e.g. imaging-1.0.0-dev
VERTICAL=imaging
VERTICAL_VERSION=1.0.0
ENVIRONMENT=dev
# used when there is a need to distinguish between different developers' resources
DEVELOPER_NAME=bruce-wayne
# storage method: 1 for couchdb, 10 for S3
STORAGE_METHOD=10
###############################################################
# Relevant only for dev environment #
###############################################################
# host port through which you can access openemr and the api from outside the container
OPENEMR_PORT=8881
HOST_CODEBASE_PATH=/home/joe/projects
OPENEMR_BRANCH=rel-503-beta
CLINIKAL_BACKEND_BRANCH=develop
CLINIKAL_MOH_IL_BRANCH=develop
VERTICAL_BRANCH=develop
CLIENT_APP_BRANCH=develop
###############################################################
# Relevant only for test/prod environments #
###############################################################
# where the installation's server and client code exist
DOMAIN_NAME=test1.img.com
# If we're using an unclosed version of openemr. If so, on each upgrade we will also run the openemr upgrade
ROLLING_OPENEMR_VERSION=yes
###############################################################
# MISC #
###############################################################
# get docker host ip in docker network bridge
BRIDGE_HOST_IP=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+')
MYSQL_HOST=$BRIDGE_HOST_IP
# if 'yes', docker will find a local image to use
LOCAL_IMAGE=no