Skip to content

Added changes in order to get database with utf8 and collate utf8-bin #4

3 commits merged into from Sep 8, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
Some housekeeping, expanding test suite
Jim Van Fleet committed Sep 8, 2016
commit d7d282d9e5bd25b4e8c099f687ff24ccb90a3c3f
2 changes: 1 addition & 1 deletion Dockerfile
@@ -21,7 +21,7 @@ RUN yum -y install --setopt=tsflags=nodocs mariadb-server bind-utils pwgen psmis
# Add starters and installers
ADD ./container_files /opt
RUN rm -rf /etc/my.cnf
COPY ./container_files/conf/my.cnf /etc
COPY ./conf/my.cnf /etc
# Add Volumes and Set permissions
RUN mkdir /opt/shared && chmod 777 /opt/shared && chmod 777 /opt/bin/*.sh

File renamed without changes.
5 changes: 5 additions & 0 deletions tests/image.bats
@@ -9,3 +9,8 @@ load ../common
@test "MariaDB service available" {
docker run -i $maintainer/$imagename find /usr/lib/systemd/system/mariadb.service
}

@test "MariaDB first run consumes tmpfile" {
result="$(docker run -i $maintainer/$imagename find /tmp/firsttimerunning)"
[ "$result" != '' ]
}