Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
InCommonTAP-Examples/Workbench/wordpress_data/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
16 lines (16 sloc)
664 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mariadb:latest | |
RUN apt-get update | |
RUN apt install curl -y | |
#RUN apt-get install wget gcc libmysql++-dev librabbitmq-dev pkg-config libbsd-dev -y | |
#ENV MYSQL_RANDOM_ROOT_PASSWORD=true | |
ENV MYSQL_ROOT_PASSWORD=54y6RxN7GfC7aes3 | |
ENV MYSQL_DATABASE=wordpress | |
ENV MYSQL_USER=wordpress | |
ENV MYSQL_PASSWORD=54y6RxN7GfC7aes3 | |
#WORKDIR /tmp | |
#RUN wget https://github.com/ssimicro/lib_mysqludf_amqp/releases/download/v2.0.0/lib_mysqludf_amqp-2.0.0.tar.gz | |
#RUN tar zxf lib_mysqludf_amqp-2.0.0.tar.gz | |
#WORKDIR /tmp/lib_mysqludf_amqp-2.0.0 | |
#RUN ./configure && make && make install #mysql -u root --password=54y6RxN7GfC7aes3 < installdb.sql | |
RUN cat /etc/resolv.conf | |
EXPOSE 3306 |