We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d13246 commit b313e61Copy full SHA for b313e61
Dockerfile
@@ -142,6 +142,14 @@ RUN mkdir $BENCHMARKS_DIR && cd $BENCHMARKS_DIR \
142
# Avoid changing files if they are already owned by mysql; otherwise image size doubles
143
RUN chown mysql:mysql --from=root:root -R $HOPSWORK_DIR /home/mysql
144
145
+# These directories have to have 777 permissions if we want to
146
+# run RonDB Pods as any user
147
+RUN chmod 777 $RONDB_DATA_DIR \
148
+ && chmod 777 $RONDB_DATA_DIR/ndb \
149
+ && chmod 777 $BACKUP_DATA_DIR \
150
+ && chmod 777 $HOPSWORK_DIR/docker/rondb_standalone \
151
+ && chmod -R 777 $MYSQLD_DATA_DIR
152
+
153
ENTRYPOINT ["./docker/rondb_standalone/entrypoints/entrypoint.sh"]
154
EXPOSE 3306 33060 11860 1186 4406 5406
155
CMD ["mysqld"]
0 commit comments