Skip to content

YashMarmat/flask-docker-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Commands to run (without Docker)

python3 -m venv myenv

source myenv/bin/activate

python3 myscript.py

ctrl + c (to quit the server)

deactivate (to quit virtual env)

Commands to run (with Docker)

docker compose up --build

ctrl + c (to stop/exit the docker container)

docker compose down (to remove the docker container)