dbt
- Video Tutorial
dbt (data build tool) Crash Course For Beginners (dbt Core) | Full Tutorial
- dbt sample project: https://github.com/harsh1kumar/learning/tree/master/dbt
Docker
Install
If not possible to install docker-desktop due to licence requirements, use colima
(details)
Commands
- docker run nginx
- docker run -p 8080:80 nginx
map 8080 port to port 80 of nginx container
- docker ps
- docker ps -a
- docker run -d nginx
starts nginx docker container in background
- docker stop <first few letters of Container ID>
- docker rm <container ID>
- docker rm -f <container ID>/name
delete a running container forcefully
- docker start <container ID>/name
- docker images