1
0
forked from baron/baron-sso

gateway 분리 적용

This commit is contained in:
Lectom C Han
2026-02-02 11:05:25 +09:00
parent 9e9c622600
commit a0ebf7a48d
3 changed files with 53 additions and 22 deletions

View File

@@ -48,6 +48,24 @@ services:
networks: networks:
- baron_net - baron_net
gateway:
build:
context: ./gateway
dockerfile: Dockerfile
container_name: baron_gateway
restart: always
ports:
- "${USERFRONT_PORT:-5000}:5000"
networks:
- baron_net
- public_net
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:5000/"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
volumes: volumes:
postgres_data: postgres_data:
clickhouse_data: clickhouse_data:
@@ -58,3 +76,7 @@ networks:
name: baron_net name: baron_net
external: true external: true
driver: bridge driver: bridge
public_net:
name: public_net
external: true

View File

@@ -82,28 +82,6 @@ services:
networks: networks:
- baron_net - baron_net
gateway:
build:
context: ./gateway
dockerfile: Dockerfile
container_name: baron_gateway
restart: always
ports:
- "${USERFRONT_PORT:-5000}:5000"
networks:
- baron_net
- public_net
depends_on:
backend:
condition: service_healthy
userfront:
condition: service_healthy
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:5000/"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
userfront: userfront:
build: build:
context: ./userfront context: ./userfront

31
gateway/entrypoint.sh Normal file
View File

@@ -0,0 +1,31 @@
#!/bin/sh
# 대상 호스트와 포트가 준비될 때까지 대기하는 함수
wait_for_host() {
host=$1
port=$2
name=$3
echo "Waiting for $name ($host:$port)..."
# 최대 30초 동안 대기
count=0
until nc -z $host $port || [ $count -eq 30 ]; do
sleep 1
count=$((count + 1))
done
if [ $count -eq 30 ]; then
echo "Timeout waiting for $name"
else
echo "$name is ready!"
fi
}
# 백엔드와 유저프론트 대기 (Oathkeeper는 인프라 레벨이므로 함께 뜰 가능성이 높지만 안전을 위해 포함)
wait_for_host "baron_backend" 3000 "Backend"
wait_for_host "baron_userfront" 5000 "UserFront"
wait_for_host "oathkeeper" 4455 "Oathkeeper"
echo "All dependencies are up. Starting Nginx..."
exec nginx -g 'daemon off;'