Skip to content

Commit

Permalink
chore: revert a change
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudbesnier committed Sep 5, 2024
1 parent cc390af commit a00c87d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
postgres :
image : postgres:9.4.5
container_name : forest_express_sequelize_postgres
ports :
- "5437:5432"
postgres:
image: postgres:12.19
container_name: forest_express_sequelize_postgres
ports:
- '5437:5432'
environment:
- POSTGRES_DB=forest-express-sequelize-test
- POSTGRES_USER=forest
Expand All @@ -16,8 +16,8 @@ mysql_min:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8998:3306"
ports:
- '8998:3306'

mysql_max:
image: mysql:8.0
Expand All @@ -27,8 +27,8 @@ mysql_max:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8999:3306"
ports:
- '8999:3306'

maria_db:
image: mariadb:10
Expand All @@ -38,5 +38,5 @@ maria_db:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "9000:3306"
ports:
- '9000:3306'

0 comments on commit a00c87d

Please sign in to comment.