-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sample
74 lines (64 loc) · 2.82 KB
/
.env.sample
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
# Environment variables defined in this file apply to both the Makefile and to
# docker-compose.yml
#
# Due to restrictions in the `env-file` format we cannot specify multi-line
# values for environment variables. For this reason the environment
# variables are set on service definitions in the docker-compose.*.yml files,
# rather than defined in `env-file` files.
# Note that this is simple string assignment, quotes should *not* be used.
# Multiple lines or commands, or bash syntax will not work.
#
# References:
# - https://docs.docker.com/compose/env-file/
# - https://docs.docker.com/compose/reference/envvars/
# - https://docs.docker.com/compose/environment-variables/
#####################################################################
# Docker Composer environment
#####################################################################
# Docker Compose project name
COMPOSE_PROJECT_NAME=isle-bagger
# Required for traefik on OSX (inconsistent behavior).
DOCKER_CLIENT_TIMEOUT=120
COMPOSE_HTTP_TIMEOUT=120
# The consistency requirements for bind mounts; one of:
#
# - consistent: Full consistency. The container runtime and the host maintain an identical view of the mount at all times.
# - cached: The host's view of the mount is authoritative. There may be delays before updates made on the host are visible within a container.
# - delegated: The container runtime's view of the mount is authoritative. There may be delays before updates made in a container are visible on the host.
#
# Note that using 'consistent' can be very slow.
CONSISTENCY=delegated
# The Docker image repository, to use for isle-buildkit images:
#
# - local: is produced by building isle-buildkit manually
# - islandora: is pulled from DockerHub.
# - gitlab.com/calincs/cwrc/leaf/dependency_proxy/containers/islandora: is pulled from the depency proxy.
#
# The GitLab dependency proxy:
# https://docs.gitlab.com/ee/user/packages/dependency_proxy
#
# Is used to prevent issues with DockerHub and rate limiting,
# but it requires logging in: `docker login gitlab.com`
#
# Unfortunately it doesn't work with multi-arch images so to prevent issues
# locally you can continue to rely on "islandora", CI/DC will override this
# variable though.
#
ISLE_REPOSITORY=islandora
# Local registry (i.e., isle-buildkit images built locally)
# ISLE_REPOSITORY=islandora.dev
# The version of the isle-buildkit images to use.
#
# This should match image.isle.tag value in the Helm chart.
# remote registry
ISLE_TAG=3.4.0
# local registry (i.e., isle-buildkit images built locally)
# ISLE_TAG=local
#####################################################################
# Config: General
#####################################################################
DOMAIN=islandora.dev
SITE=https://${DOMAIN}
# The repository for images produced by this repository.
BAGGER_TAG=local
BAGGER_REPOSITORY=ghcr.io/cwrc