summaryrefslogtreecommitdiff
path: root/backup
diff options
context:
space:
mode:
authorHirotaka Wakabayashi <hiwkby@yahoo.com>2023-01-27 14:34:49 +0900
committerHirotaka Wakabayashi <hiwkby@yahoo.com>2023-01-27 15:06:37 +0900
commit553c578923d30d0eb15ad5dbd0a2c583cae274a4 (patch)
tree935a64a0eb2b3175c48ba0fcb119a0025142852d /backup
parent7a62e826a402de29b6a929569dab27adb3259975 (diff)
downloadtrove-553c578923d30d0eb15ad5dbd0a2c583cae274a4.tar.gz
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
Diffstat (limited to 'backup')
-rw-r--r--backup/Dockerfile2
1 files changed, 1 insertions, 1 deletions
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"