Skip to content

Commit

Permalink
roll back mariadb to 10.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nr23730 committed Aug 10, 2022
1 parent e5e62b3 commit d6163de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ services:
]
cbioportal_database:
restart: unless-stopped
image: mariadb:10.8.3
image: mariadb:10.8.2
container_name: cbioportal_database_container
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-P@ssword1}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-research.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
]
cbioportal_database:
restart: unless-stopped
image: mariadb:10.8.3
image: mariadb:10.8.2
container_name: cbioportal_database_container
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-P@ssword1}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ services:
]
cbioportal_database:
restart: unless-stopped
image: mariadb:10.8.3
image: mariadb:10.8.2
container_name: cbioportal_database_container
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-P@ssword1}
Expand Down
4 changes: 2 additions & 2 deletions services/ensembl-mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mariadb:10.8.3 as builder
FROM mariadb:10.8.2 as builder

# That file does the DB initialization but also runs mysql daemon, by removing the last line it will only init
# RUN ["sed", "-i", "s/exec \"$@\"/echo \"not running $@\"/", "/usr/local/bin/docker-entrypoint.sh"]
Expand All @@ -24,7 +24,7 @@ RUN gunzip *.gz
# it has been declared, those changes will be discarded.
RUN ["/home/docker-entrypoint.sh", "mysqld", "--datadir", "/initialized-db", "--aria-log-dir-path", "/initialized-db"]

FROM mariadb:10.8.3
FROM mariadb:10.8.2
LABEL maintainer="Niklas Reimer <[email protected]>"

COPY --from=builder /initialized-db /var/lib/mysql

0 comments on commit d6163de

Please sign in to comment.