Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 589 Bytes

File metadata and controls

25 lines (18 loc) · 589 Bytes

Containers

This folder is a minimal, hands-on example to show how Docker and Docker Compose work together. For the full teaching material, use en/practical6/practical6.ipynb.

What's Here

  • acquisition/: a tiny Python container example.
  • docker-compose.yaml: Compose file that builds the acquisition image.

Quick Start

From containers/:

docker compose up --build

Stop and remove containers:

docker compose down

Tips

  • Rebuild when you change containers/acquisition/acquisition.py.
  • Use docker compose logs -f to see container output.