Docker: MySQL: updated version to v8.3.0

This commit is contained in:
Alexey Safronov 2024-03-18 19:26:56 +04:00
parent 6ea363201b
commit be4094742c
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ if arch_name == "x86_64" or arch_name == "AMD64":
subprocess.run(["docker", "compose", "-f", os.path.join(dockerDir, "db.yml"), "up", "-d"])
elif arch_name == "arm64":
print("CPU Type: arm64 -> run db.yml with arm64v8 image")
os.environ["MYSQL_IMAGE"] = "arm64v8/mysql:8.0.32-oracle"
os.environ["MYSQL_IMAGE"] = "arm64v8/mysql:8.3.0-oracle"
subprocess.run(["docker", "compose", "-f", os.path.join(dockerDir, "db.yml"), "up", "-d"])
else:
print("Error: Unknown CPU Type:", arch_name)

View File

@ -6,7 +6,7 @@
DOCKER_IMAGE_PREFIX=${STATUS}docspace
DOCKER_TAG=latest
CONTAINER_PREFIX=${PRODUCT}-
MYSQL_VERSION=8.0.32
MYSQL_VERSION=8.3.0
MYSQL_IMAGE=mysql:${MYSQL_VERSION}
ELK_VERSION=7.16.3
SERVICE_PORT=5050