# 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: # 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 environment: LOG_LEVEL: debug