Skip to content

jnnchi/RespiraCheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RespiraCheck

Setting up Docker

Install Docker Desktop

  1. Access the following link to install.

  2. Verify installation by running:

    docker --version
  3. Open Docker Desktop and wait for it to start. This will give you a visual of whether your containers are running.

Build and Start the Docker Containers

  1. Run the following command to build the images and start the containers in detached mode:
    docker-compose up --build -d
    • The --build flag ensures the images are rebuilt.
    • The -d flag runs the containers in the background (detached mode).

Check Running Containers

  1. To see which containers are running, use:

    docker ps
  2. You may need to check logs for the ML container to get the token for the Jupyter URL. Type the following command, and look for the URLs containing the token.

    docker logs <container_id>
  3. To open the FastAPI backend, visit: http://localhost:8000

  4. To open the ML folder in Jupyter in your browser, visit: http://localhost:8888/login?next=%2Ftree%3F and paste the token you found from Docker logs in Step 4 in as a password. Alternatively, simply follow the URL you found in Step 4.

  5. When you're done with the Docker containers, run:

    docker-compose down

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published