Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
touch ./application-s3.yml
echo "${{ secrets.YML_S3 }}" > ./application-s3.yml
shell: bash

# 환경별 yml 파일 생성(6) - rabbitMQ
- name: make application-mq.yml
if: |
Expand Down Expand Up @@ -145,7 +145,12 @@ jobs:
fi

sudo docker pull ${{ secrets.DOCKER_USER_NAME }}/eatmate
sudo docker run --name spring -d -p 8080:8080 -e TZ=Asia/Seoul ${{ secrets.DOCKER_USER_NAME }}/eatmate
sudo docker run --name spring \
-d \
-p 8080:8080 \
-e TZ=Asia/Seoul \
-e JAVA_OPTS="-Xms256m -Xmx1g" \
${{ secrets.DOCKER_USER_NAME }}/eatmate
sudo docker image prune -a -f
debug: true # Enable debugging output

Expand Down