Skip to content
Open
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
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- default
command: sleep infinity
mysql:
image: mysql:8
image: mysql:8.4.10
volumes:
- mysql-storage:/var/lib/mysql
restart: always
Expand Down
6 changes: 3 additions & 3 deletions backend/test/e2e/remote/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ version: "3"
services:

mysql-test:
image: mysql:8.0.26
image: mysql:8.4.10
platform: linux/x86_64
volumes:
- mysql-test-storage:/var/lib/mysql
Expand All @@ -33,12 +33,12 @@ services:
MYSQL_PASSWORD: merico

postgres-test:
image: postgres:14.2-alpine
image: postgres:18.1-alpine
restart: always
ports:
- "3308:5432"
volumes:
- postgres-test-storage:/var/lib/postgresql/data
- postgres-test-storage:/var/lib/postgresql
environment:
POSTGRES_DB: lake
POSTGRES_USER: merico
Expand Down
2 changes: 1 addition & 1 deletion devops/deployment/temporal/docker-compose-temporal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
version: "3"
services:
mysql:
image: mysql:8.0.26
image: mysql:8.4.10
volumes:
- mysql-storage:/var/lib/mysql
restart: always
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name: devlake-mysql

services:
mysql:
image: mysql:8
image: mysql:8.4.10
volumes:
- mysql-storage:/var/lib/mysql
restart: always
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-dev-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
name: devlake-postgresql

services:
postgres:
image: postgres:17.2
postgres:
image: postgres:18.1
volumes:
- postgres-storage:/var/lib/postgresql
restart: always
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.datasources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ version: "3"
services:

mysql-ds:
image: mysql:8
image: mysql:8.4.10
volumes:
- ./.docker/mysql-ds:/var/lib/mysql
# init.sql only runs on bootstrap. If you want to manually add the extra databases, run the SQL statements in the init.sql as MySQL root user
Expand Down
2 changes: 1 addition & 1 deletion grafana/scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ else
},
"jsonData": {
"sslmode": "${SSL_MODE}",
"postgresVersion": 1400,
"postgresVersion": 1800,
"database": "${POSTGRES_DATABASE}"
},
"access": "proxy",
Expand Down