diff --git a/changelog/items/bugs-fixed/fix-missing-logs-dir.md b/changelog/items/bugs-fixed/fix-missing-logs-dir.md new file mode 100644 index 00000000..19754e65 --- /dev/null +++ b/changelog/items/bugs-fixed/fix-missing-logs-dir.md @@ -0,0 +1 @@ +- Fix missing `logs` dir that is required for backup scripts (cron jobs). \ No newline at end of file diff --git a/docker-compose.accounts.yml b/docker-compose.accounts.yml index 99b10ff4..1e786c11 100644 --- a/docker-compose.accounts.yml +++ b/docker-compose.accounts.yml @@ -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 diff --git a/docker/nginx/docker-entrypoint.sh b/docker/nginx/docker-entrypoint.sh index d45a6d9a..3bc26ca9 100755 --- a/docker/nginx/docker-entrypoint.sh +++ b/docker/nginx/docker-entrypoint.sh @@ -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" diff --git a/logs/.gitkeep b/logs/.gitkeep new file mode 100644 index 00000000..bd5b3ce0 --- /dev/null +++ b/logs/.gitkeep @@ -0,0 +1,2 @@ +Purpose of this file is that `logs` dir can be commited to git and it will be +present on portal servers. The rest of files in `logs` dir are git ignored.