-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
21 lines (19 loc) · 808 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export BUILD_IMAGE=golang:alpine
export GO=go
export IMAGE=docker.io/bahner/go-space:latest
# This variable is used to set ports in docker-compose.yaml
export VAULT_DEV_ROOT_TOKEN_ID=space
export VAULT_PORT=8200
export VAULT_ADDR=http://localhost:${VAULT_PORT}
export VAULT_TOKEN=${VAULT_DEV_ROOT_TOKEN_ID}
export VAULT_IMAGE=docker.io/hashicorp/vault:latest
export GO_space_ELIXIR_IMAGE=elixir:otp-25-alpine
export GO_space_LOG_LEVEL=info
export GO_space_space_NODE_NAME=space@localhost
export GO_space_NODE_NAME=pubsub@localhost
export GO_space_NODE_PORT=4369
export GO_space_NODE_COOKIE=space
# This is used inside the container network and
# should use the vault service name ad the host.
export GO_space_VAULT_ADDR=http://localhost:${VAULT_PORT}
export GO_space_VAULT_TOKEN=${VAULT_DEV_ROOT_TOKEN_ID}