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 7f2a026 commit 5ac7ffcCopy full SHA for 5ac7ffc
group.nomad
@@ -8,7 +8,17 @@ task "db" {
8
image = "mysql:8.0"
9
ports = ["db"]
10
volumes = ["/pv/${var.CI_PROJECT_PATH_SLUG}-db:/var/lib/mysql-xxxx"]
11
- tmpfs = ["/tmp", "/run"]
+
12
13
+ # workaround a nomad orchestration of mysql container issue with mysql container use of
14
+ # 'ioctl' for 'autodetection of TTY or not?' on startup
15
+ tty = true
16
+ # tmpfs = ["/tmp", "/run"]
17
+ command = "sh"
18
+ args = [
19
+ "-c",
20
+ "exec /usr/local/bin/docker-entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password"
21
+ ]
22
}
23
24
# xxx
0 commit comments