Skip to content

Commit

Permalink
setting: DockerCompose 수정, Workflow 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
songhaechan committed Nov 27, 2024
1 parent d3dd633 commit 12c6760
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sportify-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
script: |
cd sportify-backend
git pull
sudo docker-compose down -v
sudo docker-compose down
sudo docker rmi $(sudo docker images -f "dangling=true" -q)
sudo docker-compose up -d --build
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ services:
MYSQL_DATABASE: sportify
TZ: Asia/Seoul
restart: always
volumes:
- mysql_data:/var/lib/mysql
networks:
sportify:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import io.swagger.v3.oas.annotations.media.Schema;

public record AddressRegisterRequest(
@Schema(description = "주소지 위도")
@Schema(description = "주소지 위도", example = "37.57015")
double latitude,
@Schema(description = "주소지 경도")
@Schema(description = "주소지 경도", example = "126.9772")
double longitude,
@Schema(description = "주소지")
@Schema(description = "주소지",example = "서울특별시 종로구 세종로 139-1")
String address,
@Schema(description = "주소지 이름")
@Schema(description = "주소지 이름", example = "회사")
String addressName
) {}

0 comments on commit 12c6760

Please sign in to comment.