From 553c578923d30d0eb15ad5dbd0a2c583cae274a4 Mon Sep 17 00:00:00 2001 From: Hirotaka Wakabayashi Date: Fri, 27 Jan 2023 14:34:49 +0900 Subject: Fixes permission problem when restoring backup This PR changes the owner of the file used by the docker container that resets the mysql root password. Original problem is the failure to restore mysql:5.7.x backup. The error occurs because the container process tries to update the file that owned by the others. Story: 2010467 Task: 47017 Change-Id: I3d8ebaac4ee5e13af83c305ce28b51e4442d8c8b --- backup/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backup/Dockerfile') diff --git a/backup/Dockerfile b/backup/Dockerfile index 3827bfc7..0d542db2 100644 --- a/backup/Dockerfile +++ b/backup/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM ubuntu:20.04 LABEL maintainer="anlin.kong@gmail.com" ARG DATASTORE="mysql5.7" -- cgit v1.2.1