Skip to content

Instantly share code, notes, and snippets.

View StefanBogdan's full-sized avatar

Stefan Bogdan StefanBogdan

View GitHub Profile
@StefanBogdan
StefanBogdan / migration_script.ipynb
Last active January 31, 2024 07:53
Migrate data between Weaviate instances
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@StefanBogdan
StefanBogdan / install_docker.sh
Created November 1, 2024 09:52
Install Docker and Docker-Compose
#!/bin/bash
OS="debian" # use "ubuntu" for Ubuntu OS
# Add Docker's official GPG key:
sudo apt-get remove docker docker-engine docker.io containerd runc || true
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/$OS/gpg -o /etc/apt/keyrings/docker.asc