Node.js 16.x, firebase-tools daily builds.
50K+
Node.js 20.x image with npm, firebase-tools.
See andrewmackrodt/docker-nodejs for more details.
# print version
docker run --rm andrewmackrodt/firebase-tools --version
# login to firebase interactively local
# linux users can use "--network=host" instead of "-p"
docker run --rm -it \
-p 9005:9005 \
-v "$HOME/.fierbase:/config" \
andrewmackrodt/firebase-tools \
-- \
login
# login to firebase interactively remote
docker run --rm -it \
-v "$HOME/.fierbase:/config" \
andrewmackrodt/firebase-tools \
-- \
login --no-localhost
# initialize a new project
docker run --rm \
-v "$HOME/.fierbase:/config" \
-v "$PWD:/app" \
-w /app \
andrewmackrodt/firebase-tools \
-- \
init
| Parameter | Function |
|---|---|
-e PUID=1000 | The user id, recommended: $(id -u) |
-e PGID=1000 | The group id, recommended: $(id -g) |
-e SUDO_NOPASSWD=0 | Set to 1 to allow passwordless sudo |
-v /config | Firebase config directory |
Content type
Image
Digest
sha256:dfe66fce1…
Size
418.9 MB
Last updated
4 months ago
docker pull andrewmackrodt/firebase-tools