sage-backend Docker Commands Using Docker Compose (Recommended) Run the application (with PostgreSQL) docker compose up -d Stop the application docker compose down View logs docker compose logs -f Rebuild and restart docker compose up --build -d Using Docker directly Build the Docker image docker build -t sage-backend . Run the container docker run -p 3000:3000 sage-backend Run in development mode (with volume mounting) docker run -p 3000:3000 -v $(pwd):/usr/src/app -v /usr/src/app/node_modules sage-backend