Skip to content

Instantly share code, notes, and snippets.

@jojijacobk
Last active July 12, 2020 10:17
Show Gist options
  • Save jojijacobk/0188a66f1bf04c6772111d510f40f980 to your computer and use it in GitHub Desktop.
Save jojijacobk/0188a66f1bf04c6772111d510f40f980 to your computer and use it in GitHub Desktop.
Dockerfile for MySQL on Oracle linux
FROM oraclelinux
MAINTAINER "Joji Jacob" <joji.jacob.k@gmail.com>
USER root
# Install mysql
RUN yum install -y https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm && \
yum install -y --nogpgcheck mysql-community-server
EXPOSE 3306
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment