- Install with
git clone
docker compose up -d --build <service name(ex:python-cpu)
- 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
│ ├── datasets
│ ├── misc
│ ├── models
│ ├── outputs
│ └── raw
├── docker
│ ├── cpu
│ └── gpu
├── docs
├── env.sample
├── notebooks
├── poetry.lock
├── pyproject.toml
├── scripts
│ └── main.py
├── src
│ ├── __init__.py
│ └── project
│ ├── common
│ ├── config
│ ├── env.py
│ └── main.py
└── tests
└── project