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
12 changes: 12 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,15 @@ services:
volumes:
- ./logs:/var/log/spring
restart: always

mysql:
image: mysql:8.0
container_name: solid-connection-dev-mysql
environment:
MYSQL_DATABASE: solid_connection
Comment thread
coderabbitai[bot] marked this conversation as resolved.
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
ports:
- "3306:3306"
Comment thread
Hexeong marked this conversation as resolved.
volumes:
- ./mysql_data_dev:/var/lib/mysql
restart: always
Loading