Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
MYSQL_ROOT_PASSWORD: 12345
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
ports:
- '3308:3306'
- '3309:3306'
postgres:
image: postgres
env:
Expand All @@ -28,7 +28,7 @@ jobs:
POSTGRES_PASSWORD: 12345
POSTGRES_ROOT_PASSWORD: 12345
ports:
- '5434:5432'
- '5435:5432'
strategy:
matrix:
node-version:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
version: "3"
version: '3'

services:
mysql:
container_name: athenna_db_mysql
image: mysql
ports:
- "3308:3306"
- '3309:3306'
environment:
MYSQL_DATABASE: athenna
MYSQL_ROOT_PASSWORD: 12345
Expand All @@ -15,7 +15,7 @@ services:
container_name: athenna_db_postgres
image: postgres
ports:
- "5434:5432"
- '5435:5432'
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
Expand Down
Loading