YashMarmat / flask-docker-boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)