Docker

Docker is a platform for developing, deploying, and running applications using containers. Imagine containers as standardized shipping containers for your software.

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 the main branch.
  • latest - Reflects the latest tag.
  • {{major}}.{{minor}}.{{patch}} - Refletct the specific full version tag.
  • {{major}}.{{minor}} - Refletct the specific version tag, omitting {{patch}} version identifier.
  • {{major}} - Refletct the specific major version identifier.
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

© Copyright 2024 Lessify Rights Reserved. Build with Localess