Merge remote-tracking branch 'origin/master' into error-pages
This commit is contained in:
commit
9d8b34af43
|
@ -22,7 +22,7 @@ services:
|
|||
accounts:
|
||||
# uncomment "build" and comment out "image" to build from sources
|
||||
# build: https://github.com/SkynetLabs/skynet-accounts.git#main
|
||||
image: skynetlabs/skynet-accounts
|
||||
image: skynetlabs/skynet-accounts:1.1.0
|
||||
container_name: accounts
|
||||
restart: unless-stopped
|
||||
logging: *default-logging
|
||||
|
@ -78,25 +78,27 @@ services:
|
|||
depends_on:
|
||||
- mongo
|
||||
|
||||
dashboard-v2:
|
||||
build:
|
||||
context: ./packages/dashboard-v2
|
||||
dockerfile: Dockerfile
|
||||
container_name: dashboard-v2
|
||||
restart: unless-stopped
|
||||
logging: *default-logging
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
- GATSBY_PORTAL_DOMAIN=${PORTAL_DOMAIN}
|
||||
- GATSBY_STRIPE_PUBLISHABLE_KEY=${STRIPE_PUBLISHABLE_KEY}
|
||||
volumes:
|
||||
- ./docker/data/dashboard-v2/.cache:/usr/app/.cache
|
||||
- ./docker/data/dashboard-v2/public:/usr/app/public
|
||||
networks:
|
||||
shared:
|
||||
ipv4_address: 10.10.10.86
|
||||
expose:
|
||||
- 9000
|
||||
depends_on:
|
||||
- mongo
|
||||
# Do not build dashboard-v2 until we're ready to make a switch
|
||||
# ============================================================
|
||||
# dashboard-v2:
|
||||
# build:
|
||||
# context: ./packages/dashboard-v2
|
||||
# dockerfile: Dockerfile
|
||||
# container_name: dashboard-v2
|
||||
# restart: unless-stopped
|
||||
# logging: *default-logging
|
||||
# env_file:
|
||||
# - .env
|
||||
# environment:
|
||||
# - GATSBY_PORTAL_DOMAIN=${PORTAL_DOMAIN}
|
||||
# - GATSBY_STRIPE_PUBLISHABLE_KEY=${STRIPE_PUBLISHABLE_KEY}
|
||||
# volumes:
|
||||
# - ./docker/data/dashboard-v2/.cache:/usr/app/.cache
|
||||
# - ./docker/data/dashboard-v2/public:/usr/app/public
|
||||
# networks:
|
||||
# shared:
|
||||
# ipv4_address: 10.10.10.86
|
||||
# expose:
|
||||
# - 9000
|
||||
# depends_on:
|
||||
# - mongo
|
||||
|
|
|
@ -36,6 +36,19 @@ else
|
|||
exec 3>/dev/null
|
||||
fi
|
||||
|
||||
# Really dirty backwards compatible workaround for single server portals:
|
||||
# =======================================================================
|
||||
# in the past we used to require single server portals not to include
|
||||
# server domain env variable because it messed up with caddy; we switched
|
||||
# to certbot and that is not the case any more but we also switched to
|
||||
# using built in envsubst instead of custom mustache script for nginx
|
||||
# templating and now when server domain is not defined, it messes up whole
|
||||
# nginx config and nginx will not start; this workaround assigns portal
|
||||
# domain as a server domain if server domain is not defined
|
||||
if [ -z "${SERVER_DOMAIN}" ]; then
|
||||
export SERVER_DOMAIN=${PORTAL_DOMAIN}
|
||||
fi
|
||||
|
||||
if [ "$1" = "nginx" -o "$1" = "nginx-debug" ]; then
|
||||
if /usr/bin/find "/docker-entrypoint.d/" -mindepth 1 -maxdepth 1 -type f -print -quit 2>/dev/null | read v; then
|
||||
echo >&3 "$0: /docker-entrypoint.d/ is not empty, will attempt to perform configuration"
|
||||
|
|
Reference in New Issue