- Install with :
git clone
docker compose up -d --build
- connect :
docker compose exec <service name(ex:python-cpu)> bash
- disconect :
exit
- Access with a browser http://localhost:8888/lab
- Starting :
docker compose start
- Stopping :
docker compose stop
./
├── .dockerignore
├── .git
├── .gitattributes
├── .github
├── .gitignore
├── .pre-commit-config.yaml
├── LICENSE
├── Makefile
├── README.md
├── compose.yaml
├── config
├── data
│ ├── misc
│ ├── outputs
│ └── raw
├── docker
│ └── cpu
├── docs
├── env.sample
├── notebooks
├── poetry.lock
├── pyproject.toml
├── scripts
│ └── main.py
├── src
│ ├── __init__.py
│ └── project
│ ├── common
│ ├── config
│ ├── env.py
│ └── main.py
└── tests
└── project