mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-15 11:07:57 +01:00
48 lines
1.8 KiB
Docker
48 lines
1.8 KiB
Docker
# Dockerizing WiseMapping: Dockerfile for building WiseMapping images
|
|
# Based on ubuntu:latest, installs WiseMapping (http://ww.wisemapping.org)
|
|
|
|
FROM ubuntu:latest
|
|
MAINTAINER Paulo Gustavo Veiga <pveiga@wisemapping.com>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV MYSQL_ROOT_PASSWORD password
|
|
ENV WISE_VERSION 4.0.2
|
|
|
|
# Install utilities
|
|
RUN apt-get install -y zip
|
|
|
|
# Prepare distribution
|
|
COPY target/wisemapping-v${WISE_VERSION}.zip .
|
|
RUN unzip wisemapping-v${WISE_VERSION}.zip
|
|
|
|
# Install MySQL
|
|
RUN echo mysql-server mysql-server/root_password password ${MYSQL_ROOT_PASSWORD} | debconf-set-selections;\
|
|
echo mysql-server mysql-server/root_password_again password ${MYSQL_ROOT_PASSWORD} | debconf-set-selections;\
|
|
apt-get install -y mysql-server
|
|
|
|
RUN service mysql start && \
|
|
mysql -uroot -p${MYSQL_ROOT_PASSWORD} < /wisemapping-v${WISE_VERSION}/config/database/mysql/create-database.sql && \
|
|
mysql -uwisemapping -Dwisemapping -ppassword < /wisemapping-v${WISE_VERSION}/config/database/mysql/create-schemas.sql && \
|
|
mysql -uwisemapping -Dwisemapping -ppassword < /wisemapping-v${WISE_VERSION}/config/database/mysql/apopulate-schemas.sql
|
|
|
|
# Install Java 8
|
|
RUN apt-get install -y software-properties-common && \
|
|
add-apt-repository ppa:webupd8team/java && \
|
|
apt-get update
|
|
|
|
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections;\
|
|
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 seen true | debconf-set-selections;\
|
|
sudo apt-get install -y oracle-java8-installer
|
|
|
|
# Configure instance
|
|
COPY docker-conf/app.properties wisemapping-v4.0.1/webapps/wisemapping/WEB-INF/app.properties
|
|
|
|
# Clean up
|
|
RUN apt-get clean
|
|
RUN rm wisemapping-v${WISE_VERSION}.zip
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD "sh" "-c" "service mysql start;cd wisemapping-v${WISE_VERSION};./start.sh"
|