Skip to content

CMU-313/f25-docker-recitation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

f25-docker-recitation

1. Running the app locally

In the root directory, run:

pip install -r requirements.txt

to install requirements.

uvicorn app.main:app --host 0.0.0.0 --port 8080

to locally run the app.

2. Build the docker image

Make sure your have Dockerfile

docker build -t myimage .

3. Local or remote containerization (and deployment)

Local

You can containerize locally two ways. Using docker run or using the docker-compose.yml file.

docker run -d --name mycontainer -p 80:80 myimage 

OR

docker-compose up -d

4. Stretch Challenge

Remote

Try to run your code remotely by running the docker container in a codespace

About

Docker Recitation 8 For Fall 2025

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •