Skip to content

Commit 4c22b95

Browse files
committed
Update database Docker images.
1 parent cc1e1b3 commit 4c22b95

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

azure-pipelines.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
resources:
22
containers:
33
- container: mysql
4-
image: mysql:5.7.28
4+
image: mysql:8.0.31
55
ports:
66
- "3300:3306"
77
env:
88
MYSQL_ROOT_PASSWORD: password
99
MYSQL_DATABASE: test
1010
- container: postgres
11-
image: postgres:11.6-alpine
11+
image: postgres:15.0-alpine
1212
ports:
1313
- 5432:5432
1414
env:
@@ -28,7 +28,7 @@ variables:
2828
jobs:
2929
- job: Linux_MySQL
3030
pool:
31-
vmimage: 'ubuntu-20.04'
31+
vmimage: 'ubuntu-22.04'
3232
services:
3333
mysql: mysql
3434
variables:
@@ -83,7 +83,7 @@ jobs:
8383

8484
- job: Linux_PostgreSQL
8585
pool:
86-
vmimage: 'ubuntu-20.04'
86+
vmimage: 'ubuntu-22.04'
8787
services:
8888
postgres: postgres
8989
variables:
@@ -129,7 +129,7 @@ jobs:
129129

130130
- job: Linux_SQLite
131131
pool:
132-
vmimage: 'ubuntu-20.04'
132+
vmimage: 'ubuntu-22.04'
133133
steps:
134134
- task: UseDotNet@2
135135
inputs:
@@ -162,7 +162,7 @@ jobs:
162162

163163
- job: Linux_SQLServer
164164
pool:
165-
vmimage: 'ubuntu-20.04'
165+
vmimage: 'ubuntu-22.04'
166166
services:
167167
sqlserver: sqlserver
168168
variables:
@@ -238,7 +238,7 @@ jobs:
238238
- Linux_SQLServer
239239
- Windows_SQLServer
240240
pool:
241-
vmimage: 'ubuntu-20.04'
241+
vmimage: 'ubuntu-22.04'
242242
steps:
243243
- task: DownloadPipelineArtifact@0
244244
inputs:

docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ services:
1010
SA_PASSWORD: P@ssw0rd
1111

1212
mysql:
13-
image: mysql:5.7.28
13+
image: mysql:8
1414
ports:
1515
- "3306:3306"
1616
environment:
1717
MYSQL_ROOT_PASSWORD: test
1818

1919
postgres:
20-
image: postgres:11.6-alpine
20+
image: postgres:15-alpine
2121
ports:
2222
- "5432:5432"
2323
environment:

docker/setup/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:22.04
22

33
RUN apt-get update && apt-get install -y docker.io wget
44

0 commit comments

Comments
 (0)