forked from colonyos/colonies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.env.example
More file actions
74 lines (66 loc) · 2.88 KB
/
Copy pathdocker-compose.env.example
File metadata and controls
74 lines (66 loc) · 2.88 KB
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
# Template for the local .env file used by docker-compose.yml. Do NOT put real
# keys or passwords here; this template is committed to git.
#
# Generate a private, ready-to-use .env with fresh keys and passwords:
#
# ./scripts/generate-dev-env.sh
#
# Compose auto-loads .env for ${VAR} interpolation, so `docker compose up`
# picks it up with no manual step. To also use these values with the colonies
# CLI in your shell: set -a; . ./.env; set +a
#
# This file is in Compose env format (KEY=value, no `export`), so it works both
# as a Compose .env file and, via `set -a`, as a shell environment.
TZ=UTC
# Image tag for colonyos/colonies and colonyos/colonies-allinone.
COLONIES_TAG=latest
# ============================================================================
# HTTP SERVER
# ============================================================================
COLONIES_SERVER_HOST=localhost
COLONIES_SERVER_HTTP_PORT=50080
COLONIES_TLS=false
COLONIES_VERBOSE=false
# ============================================================================
# DATABASE (postgres / fs / ha profiles)
# ============================================================================
COLONIES_DB_USER=postgres
COLONIES_DB_PASSWORD=__DB_PASSWORD__
COLONIES_DB_PORT=5432
COLONIES_DB_SSLMODE=disable
# ============================================================================
# IDENTITY AND SECURITY
# ============================================================================
COLONIES_SERVER_ID=__SERVER_ID__
COLONIES_SERVER_PRVKEY=__SERVER_PRVKEY__
COLONIES_COLONY_NAME=dev
COLONIES_COLONY_ID=__COLONY_ID__
COLONIES_COLONY_PRVKEY=__COLONY_PRVKEY__
COLONIES_ID=__USER_ID__
COLONIES_PRVKEY=__USER_PRVKEY__
# ============================================================================
# CLUSTER (ha profile only)
# ============================================================================
# Shared secret that authenticates the cluster relay between nodes. Set the
# same value on every node. Leave empty for single-node (postgres/fs) profiles.
# The embedded etcd peer/client ports have no TLS/auth, so the cluster network
# must be private (firewalled/overlay); do not expose those ports publicly.
COLONIES_CLUSTER_SECRET=
# ============================================================================
# FILE STORAGE (fs profile only; off by default)
# ============================================================================
COLONIES_MODULE_FS_ENABLED=false
AWS_S3_ENDPOINT=localhost:8333
AWS_S3_PORT=8333
AWS_S3_ACCESSKEY=__S3_ACCESSKEY__
AWS_S3_SECRETKEY=__S3_SECRETKEY__
AWS_S3_REGION_KEY=
AWS_S3_BUCKET=colonies
AWS_S3_TLS=false
AWS_S3_SKIPVERIFY=false
# ============================================================================
# CLI CONVENIENCE
# ============================================================================
# On Windows Git Bash, keep Unix-style paths from being rewritten.
MSYS_NO_PATHCONV=1
COLONIES_CLI_ASCII=false