We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc2f79 commit e1ad799Copy full SHA for e1ad799
.env
@@ -26,6 +26,7 @@ JAVA_VERSION=17.0.2
26
LATEX_ALPINE_VERSION=${ALPINE_VERSION}
27
LUA_IMAGE=nickblah/lua
28
LUA_VERSION=5.4.3
29
+MYSQL_VERSION=8.0.28
30
NODE_VERSION=17.7.2
31
PERL_VERSION=5.34.1
32
PHP_VERSION=8.1.3
docker-compose.yml
@@ -133,6 +133,10 @@ services:
133
lua:
134
image: "${LUA_IMAGE}:${LUA_VERSION}"
135
entrypoint: [ "lua" ]
136
+ mysql:
137
+ image: "mysql:${MYSQL_VERSION}"
138
+ entrypoint: [ "mysql" ]
139
+ network_mode: "host"
140
node:
141
&node
142
image: "node:${NODE_VERSION}"
0 commit comments