[hw-1] implement cart service

This commit is contained in:
Никита Шубин
2025-05-25 15:49:17 +00:00
parent 3d3f10647b
commit 5077f04b0c
28 changed files with 1151 additions and 2 deletions

14
docker-compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.7"
services:
cart:
build: cart/
ports:
- "8080:8080"
depends_on:
- product-service
product-service:
image: gitlab-registry.ozon.dev/go/classroom-18/students/homework-draft/products:latest
ports:
- "8082:8082"