Skip to content

Commit

Permalink
chore(ci): update docker images to newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynering committed Feb 18, 2024
1 parent bda03ed commit 74de411
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ services:
image: testfixtures
depends_on:
- postgresql
- mysql
- mariadb
- sqlserver
- cockroachdb
- clickhouse
environment:
PGPASSWORD: postgres
PG_CONN_STRING: host=postgresql user=postgres dbname=testfixtures_test port=5432 sslmode=disable

MYSQL_CONN_STRING: root:mysql@tcp(mysql)/testfixtures_test?multiStatements=true
MYSQL_CONN_STRING: root:mariadb@tcp(mariadb)/testfixtures_test?multiStatements=true

SQLITE_CONN_STRING: testfixtures_test.sqlite3

Expand All @@ -24,20 +24,20 @@ services:
CLICKHOUSE_CONN_STRING: clickhouse://clickhouse:clickhouse@clickhouse:9000/testfixtures_test?debug=false

postgresql:
image: postgres:12.1-alpine
image: postgres:16.2-alpine
environment:
POSTGRES_DB: testfixtures_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres

mysql:
image: mysql:8.0
mariadb:
image: mariadb:11.2
environment:
MYSQL_DATABASE: testfixtures_test
MYSQL_ROOT_PASSWORD: mysql
MARIADB_DATABASE: testfixtures_test
MARIADB_ROOT_PASSWORD: mariadb

sqlserver:
image: mcr.microsoft.com/mssql/server:2019-latest
image: mcr.microsoft.com/mssql/server:2022-latest
environment:
ACCEPT_EULA: 'Y'
SA_PASSWORD: SQL@1server
Expand Down

0 comments on commit 74de411

Please sign in to comment.