2026-06-27 02:26:33 +00:00
|
|
|
# Local development overrides.
|
|
|
|
|
# Compose merges this file on top of docker-compose.yml automatically, so a
|
|
|
|
|
# plain `docker compose up` builds from source instead of pulling a registry image:
|
|
|
|
|
#
|
|
|
|
|
# docker compose up --build # build locally and run
|
|
|
|
|
# docker compose up -d # reuse the last local build
|
|
|
|
|
#
|
|
|
|
|
# It reuses the `image:` name from the base file, so the local build is tagged
|
|
|
|
|
# the same way the production image would be.
|
|
|
|
|
services:
|
|
|
|
|
website:
|
|
|
|
|
image: ${IMAGE_NAME}:${IMAGE_TAG:-latest}
|
|
|
|
|
platform: linux/arm64
|
|
|
|
|
build:
|
2026-07-09 23:00:55 +00:00
|
|
|
# The build context is the repo root so the local Localization package
|
|
|
|
|
# (referenced via ../../Packages/Localization) is inside the context.
|
|
|
|
|
context: ../..
|
|
|
|
|
dockerfile: Services/Website/Dockerfile
|
2026-06-27 02:26:33 +00:00
|
|
|
environment:
|
|
|
|
|
LOG_LEVEL: debug
|