-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.ci
106 lines (77 loc) · 2.58 KB
/
.env.ci
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Docker Compose environment file used in CI.
# -- Stack Configuration -----------------------------------------------------
# Backend
BACKEND_CORS_ORIGINS=
SECRET_KEY=ONLY-CI-secret-key
FIRST_SUPERUSER=ONLY-CI-admin
FIRST_SUPERUSER_PASSWORD=ONLY-CI-superuser-password
# SMTP_TLS=True
# SMTP_PORT=
# SMTP_HOST=
# SMTP_USER=
# SMTP_PASSWORD=
# EMAILS_FROM_EMAIL=
# Postgres
POSTGRES_SERVER=postgres
POSTGRES_USER=reev
POSTGRES_PASSWORD_FILE=/run/secrets/db-password
POSTGRES_DB=reev
# pgAdmin
PGADMIN_LISTEN_PORT=80
PGADMIN_DEFAULT_EMAIL=admin@example.com
PGADMIN_DEFAULT_PASSWORD_FILE=/run/secrets/pgadmin-password
PGADMIN_DISABLE_POSTFIX=1
# Flower
FLOWER_BASIC_AUTH=admin:flower-password
# -- Docker Images -----------------------------------------------------------
# Name of the registry server and org to use for our images.
# image_base=ghcr.io/bihealth
# Name of the dotty image to use.
# image_dotty_name=dotty
# Version of the dotty image to use.
# image_dotty_version=latest
# Name of the mehari image to use.
# image_mehari_name=mehari
# Version of the mehari image to use.
# image_mehari_version=latest
# Name of the viguno image to use.
# image_viguno_name=viguno
# Version of the viguno image to use.
# image_viguno_version=latest
# Name of the annonars image to use.
# image_annonars_name=annonars
# Version of the annonars image to use.
# image_annonars_version=latest
# Name of the traefik image to use.
# image_traefik_name=traefik
# Version of the traefik image to use.
# image_traefik_version=2.10
# Name of the postgres image to use.
# image_postgres_name=postgres
# Version of the postgres image to use.
# image_postgres_version=12
# Name of the redis image to use.
# image_redis_name=redis
# Version of the redis image to use.
# image_redis_version=6
# Name of the Minio image to use.
# image_minio_name=quay.io/minio/minio
# Version of the Minio image to use.
# image_minio_version=latest
# Name of the "mc" (Minio client) image to use.
# image_mc_name=minio/mc
# Version of the "mc" (Minio client) image to use.
# image_mc_version=latest
# -- General Container Configuration -----------------------------------------
# Base directory for configuration.
# config_basedir: ./.dev/config
## In CI: set to directory with appropriate config.
config_basedir=./.ci/config
# Base directory for volumes.
# volumes_basedir: ./volumes
## In CI: set to a directory with minimal data for spinning up the containers.
volumes_basedir=./.ci/volumes
# Base directory for secrets.
# secrets_basedir: ./secrets
## In CI: set to a directory where the `ci.yml` writes data to.
secrets_basedir=./.ci/secrets