lucasvmigotto / .datascience-slim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

datascience-slim

Conventional Commits

A lighter version of the Data Science Template

Getting started

Clone the repository into the desire folder

  • With ssh

    git clone git@github.com:LucasVmigotto/.datascience-slim.git
  • With HTTPS

    git clone https://github.com/LucasVmigotto/.datascience-slim.git
  • With GitHub CLI

    gh repo clone LucasVmigotto/.datascience-slim

Pre requisites

Mandatory

Using Docker

Dev container environment

This is a basic environment prepared to start some application development. It comes with Python, git and zsh with Oh My Zsh!

The IPykernel package is also installed to manage kernel use with Jupyter Notebooks.

Docker Troubleshooting

List all Docker containers

docker ps -a

Remove Docker Compose containers

docker compose rm --stop -f

Prune containers

docker container prune --force

List all Docker images

docker ls -a

Remove Docker dangling images

docker image rm -f $(docker image ls --filter "dangling=true" -aq)

List all Docker volumes

docker volume ls

Prune Docker volumes

docker volume prune --force

WARNING: If you want to remove ALL Docker images, just remove the --filter flag and argument

docker image rm -f $(docker image ls -aq)

References

About

License:MIT License


Languages

Language:Jupyter Notebook 100.0%