Skip to content

Commit f163214

Browse files
committed
🔧 added docker config for integration tests
1 parent fd3f777 commit f163214

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docker-compose.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.9'
2+
3+
name: barky-dev
4+
5+
services:
6+
mysql:
7+
image: mysql:8.0
8+
container_name: barky_mysql
9+
restart: always
10+
command: --default-authentication-plugin=mysql_native_password
11+
environment:
12+
- MYSQL_ROOT_PASSWORD=root
13+
- MYSQL_ROOT_HOST=%
14+
ports:
15+
- "3307:3306"

0 commit comments

Comments
 (0)