Structuring Applications with Multiple Services
Best practices guide on how to structure larger applications consisting of multiple services efficiently and optimize storage requirements
Packaging multiple micro-services into one application
Makefile
build-camera-control:
docker build --platform=arm64 ./src/camera-control -t camera-control:1.0.0
build-gallery-service:
docker build --platform=arm64 ./src/gallery-service -t gallery-service:1.0.0App.yml
Leveraging Docker layers to save resources
Example folder structure
Dockerfiles
Makefile
Last updated