29 lines
811 B
Bash
29 lines
811 B
Bash
# SSH host or alias from ~/.ssh/config.
|
|
# This can also be a literal user@host value, for example root@myvserver.
|
|
REMOTE_HOST=root@myvserver
|
|
|
|
# Remote filesystem layout.
|
|
REMOTE_APP_DIR=/root/docker/rolemasterdb
|
|
REMOTE_DATA_DIR=/root/docker/rolemasterdb/data
|
|
|
|
# Docker names on the remote host.
|
|
IMAGE_NAME=rolemasterdb
|
|
CONTAINER_NAME=rolemasterdb
|
|
|
|
# Bind the container only on loopback so nginx is the public entrypoint.
|
|
HOST_BIND_ADDRESS=127.0.0.1
|
|
|
|
# Port mapping: host:container.
|
|
HOST_PORT=8080
|
|
CONTAINER_PORT=8080
|
|
|
|
# Set to 1 if docker on the server must be run through sudo.
|
|
REMOTE_USE_SUDO=0
|
|
|
|
# Optional env file that already exists on the server and should be passed
|
|
# through to docker run with --env-file.
|
|
REMOTE_ENV_FILE=
|
|
|
|
# Prefix used for the generated local tarball name.
|
|
RELEASE_PREFIX=rolemasterdb
|