Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcos Zuriaga <wolfi@wolfi.es>2016-10-19 19:13:32 +0300
committerMarcos Zuriaga <wolfi@wolfi.es>2016-10-19 19:13:32 +0300
commitf493b73c262a15ba5605ef293c92953cc9fe30fe (patch)
tree32d7dd90f25c340293eb2b93169fec1c64202149 /Dockerfile
parentdbb576172dad7dff87991ef056a39ac8607a0ba8 (diff)
Added dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile83
1 files changed, 83 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..cc7127b4
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,83 @@
+# Nextcloud - passman
+#
+# @copyright Copyright (c) 2016 Marcos Zuriaga Miguel (wolfi@wolfi.es)
+# @copyright Copyright (c) 2016 Sander Brand (brantje@gmail.com)
+# @license GNU AGPL version 3 or any later version
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+FROM ubuntu:16.04
+RUN /bin/bash -c "export DEBIAN_FRONTEND=noninteractive" && \
+ /bin/bash -c "debconf-set-selections <<< 'mariadb-server-10.0 mysql-server/root_password password PASS'" && \
+ /bin/bash -c "debconf-set-selections <<< 'mariadb-server-10.0 mysql-server/root_password_again password PASS'" && \
+ apt-get -y update && apt-get install -y \
+ apache2 \
+ cowsay \
+ cowsay-off \
+ git \
+ libapache2-mod-php7.0 \
+ mariadb-server \
+ php7.0 \
+ php7.0-mysql \
+ php-curl \
+ php-dompdf \
+ php-gd \
+ php-mbstring \
+ php-xml \
+ php-xml-serializer \
+ php-zip \
+ wget
+ADD https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh /var/www/html/
+ADD ./appinfo/ /var/www/passman/appinfo/
+ADD ./controller/ /var/www/passman/controller/
+ADD ./css/ /var/www/passman/css/
+ADD ./img/ /var/www/passman/img/
+ADD ./js/ /var/www/passman/js/
+ADD ./l10n/ /var/www/passman/l10n/
+ADD ./lib/ /var/www/passman/lib/
+ADD ./sass/ /var/www/passman/sass/
+ADD ./templates/* /var/www/passman/templates/
+COPY ./*.md /var/www/passman/
+COPY ./LICENSE /var/www/passman/
+
+RUN service mysql restart && \
+ mysql -uroot -pPASS -e "SET PASSWORD = PASSWORD('');" && \
+ echo "echo hhvm" > /bin/phpenv && chmod +x /bin/phpenv && \
+ cd /var/www/html && \
+ chmod +x before_install.sh && \
+ /bin/bash -c "./before_install.sh passman master mysql; exit 0" && \
+ mv /var/www/server/* /var/www/html/ && \
+ cd /var/www/html/ && \
+ chmod +x occ && \
+ service mysql restart && \
+ ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database mysql --database-pass 'owncloud' && \
+ ./occ check && \
+ ./occ status && \
+ ./occ app:list && \
+ ./occ app:enable passman && \
+ ./occ upgrade && \
+ ./occ config:system:set defaultapp --value=passman && \
+ ./occ config:system:set appstoreenabled --value=false && \
+ ./occ config:system:set trusted_domains 2 --value=172.17.0.2 && \
+ ./occ config:system:set trusted_domains 3 --value=passman.cc && \
+ ./occ config:system:set trusted_domains 4 --value=demo.passman.cc && \
+# sed -i '/trusted_domains/,/),/d' /var/www/html/config/config.php && \
+# sed -i "s/);/'trusted-domains'=>array(0=>'localhost',1=>'172.17.0.2',2=>'passman.cc',3=>'demo.passman.cc'));/g" /var/www/html/config/config.php && \
+ chown -R www-data /var/www
+EXPOSE 80
+ENTRYPOINT service mysql start && \
+ service apache2 start && \
+ /usr/games/cowsay -f dragon.cow "you might now login using username:admin password:admin" && \
+ bash -c "trap 'echo stopping services...; service apache2 stop && service mysql stop && exit 0' SIGTERM SIGKILL; \
+ tail -f /var/www/html/data/nextcloud.log"