Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ontime-back/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ services:
image: ontimedemo # 빌드된 백엔드 이미지
container_name: ontime-container
ports:
- "80:8080" # HTTP 요청을 Spring Boot 8080으로 전달
- "443:8443" # HTTPS 요청을 Spring Boot 8443으로 전달
- "8080:8080"
- "8443:8443"
volumes:
- /home/ubuntu/OnTime-back/ontime-back/src/main/resources/:/app/src/main/resources/
- /home/ubuntu/OnTime-back/ontime-back/src/main/resources/key/:/app/resources/key/
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Configuration
@OpenAPIDefinition(
servers = {
@Server(url = "https://api.ontime.devkor.club", description = "Production Server"),
@Server(url = "https://3.38.172.54.nip.io", description = "New Production Server"),
@Server(url = "http://localhost:8080", description = "Local Serever")
}
)
Expand Down