Skip to content

Commit e1ad799

Browse files
feat(command): add mysql
1 parent 1bc2f79 commit e1ad799

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ JAVA_VERSION=17.0.2
2626
LATEX_ALPINE_VERSION=${ALPINE_VERSION}
2727
LUA_IMAGE=nickblah/lua
2828
LUA_VERSION=5.4.3
29+
MYSQL_VERSION=8.0.28
2930
NODE_VERSION=17.7.2
3031
PERL_VERSION=5.34.1
3132
PHP_VERSION=8.1.3

docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ services:
133133
lua:
134134
image: "${LUA_IMAGE}:${LUA_VERSION}"
135135
entrypoint: [ "lua" ]
136+
mysql:
137+
image: "mysql:${MYSQL_VERSION}"
138+
entrypoint: [ "mysql" ]
139+
network_mode: "host"
136140
node:
137141
&node
138142
image: "node:${NODE_VERSION}"

0 commit comments

Comments
 (0)