Stratpoint Engineering

Data Engineering Internship 2026

Sign in with your Stratpoint Google account to continue.

Data Engineering
Data Engineering Internship 2026
Chapter 9

Commands Reference

Docker

CommandWhat it does
docker compose up -dStart all containers in background
docker compose downStop and remove all containers
docker compose logs -f <service>Stream logs for a service
docker psList running containers
docker exec -it <container> bashOpen a shell inside a container

PostgreSQL

CommandWhat it does
psql -U postgres -d bootcampConnect to the bootcamp database
\dtList all tables (inside psql)
\d tablenameDescribe a table schema (inside psql)
\copy table FROM file.csv CSV HEADERImport CSV directly into a table

dbt

CommandWhat it does
dbt runRun all models
dbt run --select model_nameRun a single model
dbt run --select +model_nameRun a model and all its upstream dependencies
dbt testRun all tests
dbt test --select model_nameRun tests for a specific model
dbt docs generate && dbt docs serveBuild and open documentation site
dbt debugCheck connection and project configuration

Python / pip

CommandWhat it does
python3 -m venv .venvCreate a virtual environment
source .venv/bin/activateActivate the virtual environment
pip install -r requirements.txtInstall all dependencies
pip freeze > requirements.txtSave current dependencies to file
pytest tests/Run all tests in the tests/ folder