Docker
Docker is a platform for developing, deploying, and running applications using containers. Imagine containers as standardized shipping containers for your software.
Docker is recommended for personal use or previewing Localess features without deploying on Firebase
Docker Compose
Docker Compose is a tool that builds upon Docker by simplifying the process of running multi-container applications.
Localess has several docker tags:
edge
- Reflects the latest commit of themain
branch.latest
- Reflects the latest tag.{{major}}.{{minor}}.{{patch}}
- Reflect the specific full version tag.{{major}}.{{minor}}
- Reflect the specific version tag, omitting{{patch}}
the version identifier.{{major}}
- Reflect on the specific major version identifier.
YAML
services:
localess:
image: ghcr.io/lessify/localess:edge # replace edge with desired tag
ports:
- "4000:4000" # ui
- "5001:5001" # functions
- "8080:8080" # firestore
- "9099:9099" # auth
- "9199:9199" # Storage
- "5000:5000" # Hosting
volumes:
- </path/to/firebase-export>:/app/firebase-export