-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
31 lines (26 loc) · 1.55 KB
/
.env
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
# Default .env file that will use ghcr.io/open-eid
# Need to be logged in https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-with-a-personal-access-token-classic
DOCKER_REGISTRY=ghcr.io
DOCKER_REPOSITORY=open-eid
# also locally built images use ghcr.io/open-eid for repository
# gitlab.ext
# instead of commenting out following lines, run:
# `source export-env.sh .env.cyber` to overwrite variables in this file from environment variables
#DOCKER_REGISTRY=gitlab.ext.cyber.ee:5050
#DOCKER_REPOSITORY=cdoc2/cdoc2-shares-server
# environment variables are not properly expanded in .env file,
# so don't use variables for defining other variables
#SHARES_SERVER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/cdoc2-shares-server
#SHARES_SERVER_LIQUIBASE_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/cdoc2-shares-server-liquibase
# liquibase and shares-server should use the same version so they are built from same source and are compatible with each other
# For GH workflows, built images version is release tag + commit hash
# find latest version from https://github.com/orgs/open-eid/packages?ecosystem=container
#SHARES_SERVER_VERSION=0.4.1-snapshot.0-3553a87e54851276c82ee734eebcc207aaf90088
# local builds will have version from cdoc2-shares-server/shares-server/pom.xml
#SHARES_SERVER_VERSION=0.2.0-SNAPSHOT
SHARES_SERVER_VERSION=latest
# database properties used in docker-compose.yml
POSTGRES_URL=cdoc2-shares-postgres:5432
POSTGRES_DB=cdoc2-shares
POSTGRES_USER=postgres
POSTGRES_PASSWORD=secret