Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DDING-000] compose-dev.yml 임시 수정 #186

Merged
merged 12 commits into from
Nov 16, 2024
Merged
2 changes: 1 addition & 1 deletion .github/workflows/dev-server-integrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Develop Server Integrator (CI)
on:
push:
branches:
- develop
- fix/DDING-000

jobs:
build_and_push:
Expand Down
6 changes: 5 additions & 1 deletion compose-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ version: '3.8'
services:
spring:
image: public.ecr.aws/${DEV_ECR_REGISTRY_ALIAS}/dev-ecr:${VERSION:-latest}
volumes:
- mysql-volume:/var/lib/mysql
environment:
- VERSION=${VERSION:-latest}
- SPRING_PROFILES_ACTIVE=dev
Expand All @@ -21,8 +23,10 @@ services:
TZ: Asia/Seoul
ports:
- "3306:3306"
# volumes:
# - mysql-volume:/var/lib/mysql
volumes:
- mysql-volume:/var/lib/mysql
- /var/lib/docker/volumes/5c9fc061c8d4a72682f54b0bed465f9e91efa0039bd031937479516888b5f872/_data:/var/lib/mysql

volumes:
mysql-volume:
Loading