### Start Service (Host OS) Source: https://github.com/daniel-j/send2ereader/blob/master/README.md Starts the send2ereader service after dependencies and external tools are installed, making it accessible on port 3001. ```Shell $ npm start ``` -------------------------------- ### Install Node.js Dependencies (Host OS) Source: https://github.com/daniel-j/send2ereader/blob/master/README.md Installs the required Node.js packages for the send2ereader service when running directly on the host operating system. ```Shell $ npm install ``` -------------------------------- ### Run Docker Container (Containerized) Source: https://github.com/daniel-j/send2ereader/blob/master/README.md Starts the send2ereader service container(s) defined in the docker-compose.yaml file in detached mode (-d), allowing it to run in the background. ```Shell docker compose up -d ``` -------------------------------- ### Build Docker Image (Containerized) Source: https://github.com/daniel-j/send2ereader/blob/master/README.md Builds the Docker image for the send2ereader service using the provided Dockerfile and context, preparing it for deployment via Docker Compose. ```Shell docker compose build ``` -------------------------------- ### Clone Repository (Containerized) Source: https://github.com/daniel-j/send2ereader/blob/master/README.md Clones the send2ereader Git repository to obtain the necessary files (Dockerfile, docker-compose.yaml, package.json) for building and running the service in a container. ```Shell git clone https://github.com/daniel-j/send2ereader.git ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.