mirror of
https://github.com/dalbodeule/hop-gate.git
synced 2026-02-04 15:52:24 +09:00
[chore](docker): remove unused DTLS-related UDP port mapping
- Removed `443/udp` from `EXPOSE` in `Dockerfile.server`. - Removed UDP port mapping for `443` in `docker-compose.yml`.
This commit is contained in:
@@ -52,7 +52,7 @@ COPY --from=builder /out/hop-gate-server /app/hop-gate-server
|
||||
COPY .env.example /app/.env.example
|
||||
|
||||
# 기본 포트 노출 (실제 포트는 .env / 설정에 따라 변경 가능)
|
||||
EXPOSE 80 443/udp 443
|
||||
EXPOSE 80 443
|
||||
|
||||
# 기본 실행 명령
|
||||
ENTRYPOINT ["/app/hop-gate-server"]
|
||||
|
||||
@@ -27,7 +27,6 @@ services:
|
||||
# 외부 80/443 → 컨테이너 8080/8443 매핑 (예: .env.example 기준)
|
||||
- "80:80" # HTTP
|
||||
- "443:443" # HTTPS (TCP)
|
||||
- "443:443/udp" # DTLS (UDP)
|
||||
|
||||
volumes:
|
||||
# ACME 인증서/계정 캐시 디렉터리 (호스트에 지속 보관)
|
||||
|
||||
Reference in New Issue
Block a user