Skip to content

v1.0.80

Latest
Compare
Choose a tag to compare
@siddhantprateek siddhantprateek released this 16 Aug 10:45
· 15 commits to main since this release

docker-compose service

landate:
    image: siddhantprateek/landate-backend:latest
    container_name: landate-gateway
    environment:
      API_ACCESS_KEY: "all horses do not were spider mask"
      API_GATEWAY_PORT: 8000
      STORAGE_SERVICE_PORT: 8001
      AUTH_SERVICE_PORT: 8002
      DOCUMENT_SERVICE_PORT: 8003
      MONGO_URI: mongodb://<username>:<password>@<host>:27017
      CONSUL_ADDR: consul:8500
      DB_HOST: postgres
      DB_PORT: 5432
      DB_USER: postgres
      DB_PASSWORD: dev
      DB_NAME: postgres
      POSTGRES_URI: postgresql://<username>:<password>@<host>:5432/<dbname>?sslmode=disable
    ports:
      - 8000:8000
      - 2222:2222