This commit is contained in:
Mayel de Borniol 2022-10-17 23:01:30 +13:00
parent a9dcaa9ac2
commit aa08dc4c64
3 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,7 @@ version: "3.5"
services: services:
web: web:
# You can build your own image from the source running: `just rel-build && just rel-tag-latest` # You can build your own image from the source running: `just rel-build && just rel-tag-latest`
image: "bonfirenetworks/bonfire:latest-${FLAVOUR}" image: ${APP_DOCKER_IMAGE}
container_name: "bonfire_web" container_name: "bonfire_web"
restart: always restart: always
ports: ports:

View file

@ -16,6 +16,7 @@ WITH_DOCKER := env_var_or_default('WITH_DOCKER', "total")
MIX_ENV := env_var_or_default('MIX_ENV', "dev") MIX_ENV := env_var_or_default('MIX_ENV', "dev")
APP_DOCKER_IMAGE := env_var_or_default('APP_DOCKER_IMAGE', "bonfirenetworks/bonfire:latest-" +FLAVOUR)
DB_DOCKER_IMAGE := if arch() == "aarch64" { "ghcr.io/baosystems/postgis:12-3.3" } else { env_var_or_default('DB_DOCKER_IMAGE', "postgis/postgis:12-3.3-alpine") } DB_DOCKER_IMAGE := if arch() == "aarch64" { "ghcr.io/baosystems/postgis:12-3.3" } else { env_var_or_default('DB_DOCKER_IMAGE', "postgis/postgis:12-3.3-alpine") }
## Other configs - edit these here if necessary ## Other configs - edit these here if necessary

View file

@ -41,11 +41,11 @@ defmodule Mix.Tasks.Bonfire.Localise.Extract do
|> debug("gettext config") |> debug("gettext config")
exts_to_localise = exts_to_localise =
Bonfire.MixProject.deps_for(:localise) Bonfire.Mixer.deps_for(:localise)
|> debug("bonfire extensions to localise") |> debug("bonfire extensions to localise")
deps_to_localise = deps_to_localise =
Bonfire.MixProject.deps_for(:localise_self) Bonfire.Mixer.deps_for(:localise_self)
|> debug("other deps to localise") |> debug("other deps to localise")
touch_manifests() touch_manifests()