Skip to content

Commit b7e204d

Browse files
committed
Add mariadb:10.5 and wordpress:5.7 to ghcr.io/stargz-containers
Signed-off-by: Kohei Tokunaga <[email protected]>
1 parent 8071b8e commit b7e204d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

docs/pre-converted-images.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,7 @@ Additionally, image names listed in `Image Name` contain the following suffixes
5353
|`ghcr.io/stargz-containers/tomcat:10.0.0-jdk15-openjdk-buster-esgz`|Code execution until up and ready message (`Server startup`) is printed|
5454
|`ghcr.io/stargz-containers/postgres:13.1-org`|Code execution until up and ready message (`database system is ready to accept connections`) is printed|
5555
|`ghcr.io/stargz-containers/postgres:13.1-esgz`|Code execution until up and ready message (`database system is ready to accept connections`) is printed|
56+
|`ghcr.io/stargz-containers/wordpress:5.7-org`|Code execution until up and ready message (`apache2 -D FOREGROUND`) is printed|
57+
|`ghcr.io/stargz-containers/wordpress:5.7-esgz`|Code execution until up and ready message (`apache2 -D FOREGROUND`) is printed|
58+
|`ghcr.io/stargz-containers/mariadb:10.5-org`|Code execution until up and ready message (`mysqld: ready for connections`) is printed|
59+
|`ghcr.io/stargz-containers/mariadb:10.5-esgz`|Code execution until up and ready message (`mysqld: ready for connections`) is printed|

script/benchmark/hello-bench/src/hello.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ class BenchRunner:
9999
'tomcat:10.0.0-jdk15-openjdk-buster': RunArgs(waitline='Server startup'),
100100
'postgres:13.1': RunArgs(waitline='database system is ready to accept connections',
101101
env={'POSTGRES_PASSWORD': 'abc'}),
102+
'mariadb:10.5': RunArgs(waitline='mysqld: ready for connections',
103+
env={'MYSQL_ROOT_PASSWORD': 'abc'}),
104+
'wordpress:5.7': RunArgs(waitline='apache2 -D FOREGROUND'),
102105
}
103106

104107
CMD_STDIN = {'php:7.3.8': RunArgs(stdin='php -r "echo \\\"hello\\n\\\";"; exit\n'),
@@ -123,6 +126,7 @@ class BenchRunner:
123126
Bench('rethinkdb:2.3.6', 'database'),
124127
Bench('postgres:13.1', 'database'),
125128
Bench('redis:5.0.5', 'database'),
129+
Bench('mariadb:10.5', 'database'),
126130
Bench('python:3.9', 'language'),
127131
Bench('golang:1.12.9', 'language'),
128132
Bench('gcc:10.2.0', 'language'),
@@ -135,6 +139,7 @@ class BenchRunner:
135139
Bench('jenkins:2.60.3'),
136140
Bench('node:13.13.0'),
137141
Bench('tomcat:10.0.0-jdk15-openjdk-buster', 'web-server'),
142+
Bench('wordpress:5.7', 'web-server'),
138143
]])
139144

140145
def __init__(self, repository='docker.io/library', srcrepository='docker.io/library', mode=LEGACY_MODE, optimizer=DEFAULT_OPTIMIZER, puller=DEFAULT_PULLER, pusher=DEFAULT_PUSHER):

0 commit comments

Comments
 (0)