-
Notifications
You must be signed in to change notification settings - Fork 6
/
_variables.source
executable file
·48 lines (38 loc) · 1.86 KB
/
_variables.source
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
# Various variables used during build and local docker-supported development.
MAIN_IMAGE_REPOSITORY=reload
PROJECT_IMAGE_REPOSITORY=reload
# Repository and branch that should be used when cloning admin.
[email protected]:reload/os2display-admin.git
ADMIN_REPOSITORY_BRANCH=reload-develop
DOCKER_BASE_DOMAIN=reload-os2display.docker
# Support images that does not contain any project-code, thus we track eg.
# configuration-changes and general software updates via a "build" tag.
ADMIN_NGINX_BUILD_TAG=reload-0.1.0
# All images has a "build-tag", som have a "source-tag". A Source-tag references
# the version of the project the image hosts (eg. elasticsearch).
# Build tags are incrementing versions that we can do when we do any change to
# the image.
# This way we can bump the elasticsearch image-version, even tough we haven't
# bumped the version of the embedded elasticsearch.
# As a rule of thumb you should always bump the build tag if you intent to
# push a new version of the image regardless of whether you've also bumped the
# source-tag.
ADMIN_PHP_BUILD_TAG=reload-2.1.0
# Core os2display projects, the tags follow the version projects.
# We still add a "build" tag to have something to increment if a change is made
# in the image itself (eg. general software update).
MIDDLEWARE_SOURCE_TAG=5.0.2-console-json-logging-2
MIDDLEWARE_BUILD_TAG=reload-0.1.0
SCREEN_SOURCE_TAG=5.0.3
SCREEN_BUILD_TAG=reload-0.1.1
# 3rd party projects, we track their versions.
SEARCH_SOURCE_TAG=2.1.10-docker-compatibility-2
SEARCH_BUILD_TAG=reload-0.1.0
ELASTICSEARCH_SOURCE_TAG=1.7.1
ELASTICSEARCH_BUILD_TAG=reload-0.1.0
REDIS_SOURCE_TAG=4.0.9
REDIS_BUILD_TAG=reload-0.1.0
# This tag is used to determine which tag to build when make build-release is
# run. It is also used by docker-compose when in release mode (see reset-release
# in the Makefile).
ADMIN_RELEASE_TAG=reload-build-1