Initial commit

This commit is contained in:
root
2025-09-14 13:07:54 +05:00
commit 1daae73939
18 changed files with 1102 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
version: '3.8'
services:
# API Gateway
api-gateway:
build: .
# ports:
# - '80:80'
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- core-service
- parser-service
networks:
- api-network
# Core Service (заглушка для демонстрации)
# core-service:
# image: nginx:alpine
# ports:
# - '8080:80'
# volumes:
# - ./core-service-html:/usr/share/nginx/html:ro
# networks:
# - api-network
# # Parser Service (заглушка для демонстрации)
# parser-service:
# image: nginx:alpine
# ports:
# - '8081:80'
# volumes:
# - ./parser-service-html:/usr/share/nginx/html:ro
# networks:
# - api-network
networks:
api-network:
driver: bridge