Skip to content

Commit

Permalink
fix: yml 설정 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
EunChanNam committed Nov 29, 2023
1 parent 7b7e80e commit c48a8c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
context: ./
dockerfile: server/Dockerfile-server
image: eunchannam/we-share-wish-hair:latest
platform: linux/amd64

redis:
build:
context: ./
dockerfile: redis/Dockerfile-redis
image: eunchannam/we-share-wish-hair:redis
image: eunchannam/we-share-wish-hair:redis
platform: linux/amd64
2 changes: 1 addition & 1 deletion docker/server/Dockerfile-server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:17-alpine
ARG JAR_PATH=build/libs/*.jar
ARG JAR_PATH=../build/libs/*.jar
COPY ${JAR_PATH} /home/server.jar
ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar","/home/server.jar"]

0 comments on commit c48a8c4

Please sign in to comment.