File size: 331 Bytes
77bffd4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Prints available recipes
default:
just --list
# Starts the Environment using Docker
dev:
docker compose up notebook
# Builds Docker Environment
build:
docker compose build notebook
# Stops the Docker Environment
undev:
docker compose down
# SSH into the Docker Container
bash:
docker exec -it <CONTAINER ID> bash
|