Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion emulator-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FROM node:22-trixie-slim

# Keep in sync with the emulator-image.yml workflow, which greps this ARG to
# derive the pushed tag.
ARG FIREBASE_TOOLS_VERSION=15.23.0
ARG FIREBASE_TOOLS_VERSION=15.25.0

# openjdk JRE is the Firestore emulator's only system dep (it's a Java jar);
# firebase-tools >=15 needs Java 21+.
Expand Down
4 changes: 2 additions & 2 deletions emulator-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Image tags track the pinned `firebase-tools` version (not gem releases).

```bash
docker run --rm -p 8080:8080 -p 9099:9099 \
ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.23.0
ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.25.0
```

Firestore is on `localhost:8080`, Auth on `localhost:9099`. Point the gem at them:
Expand All @@ -28,7 +28,7 @@ start; mount your own config for rules parity with prod (below).
```yaml
services:
firebase-emulators:
image: ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.23.0
image: ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.25.0
ports: ["8080:8080", "9099:9099"]
volumes:
- ./firebase.json:/firebase/firebase.json:ro
Expand Down
2 changes: 1 addition & 1 deletion gem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ locally with zero GCP credentials. The recommended path is the prebuilt emulator

```bash
docker run --rm -p 8080:8080 -p 9099:9099 \
ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.23.0
ghcr.io/cruglobal/solid-gcp-firebase-emulators:15.25.0
```

Or via docker-compose, mounting your app's `firebase.json` + `firestore.rules` so the
Expand Down