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
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 베이스 이미지
FROM openjdk:17-jdk-alpine
FROM openjdk:17-jdk-slim

# 작업 디렉토리 설정
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
dockerfile: docker/Dockerfile
container_name: mywork-application
ports:
- "8080:8080"
- "8081:8080"
environment:
- SPRING_PROFILES_ACTIVE=local
deploy:
Expand Down Expand Up @@ -66,7 +66,7 @@ services:
image: grafana/grafana:11.5.6
container_name: grafana
ports:
- "3000:3000"
- "3001:3000"
volumes:
- ../grafana-data:/var/lib/grafana
environment:
Expand Down
2 changes: 1 addition & 1 deletion k6/member/MemberLoadTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function() {

let response = loginMember({
email: user.email,
password: user.password
password: '1234'
});

check(response, {
Expand Down
Loading