Skip to main content

Astroluma Compose

Create your own Astroluma docker-compose.yml file as per your requirements

Astroluma Configuration

MongoDB Configuration

If you encounter AVX errors, please use MongoDB 4.0

Generated Docker Compose

version: '3.8'
services:
  app:
    image: sanjeet990/astroluma:latest
    container_name: astroluma
    environment:
      PORT: 8000
      NODE_ENV: production
      SECRET_KEY: a2c5f9a8b2d7e1a7f2c9c8d9b5f7a3d5
      MONGODB_URI: mongodb://localhost:27017/astroluma
    volumes:
      - ./astroluma-app:/app/storage/uploads
    depends_on:
      - mongodb
    restart: always
    network_mode: host

  mongodb:
    image: mongo:6.0
    container_name: mongodb
    volumes:
      - ./astroluma-db:/data/db
    restart: always
    network_mode: host

volumes:
  mongo_data:
    driver: local
  uploads_data:
    driver: local