aboutsummaryrefslogtreecommitdiff
path: root/app/nextcloud/build
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2021-08-20 17:39:07 +0200
committerQuentin <quentin@deuxfleurs.fr>2021-08-20 17:39:07 +0200
commitd40c41004d0f234140f5ec9fc029f4ef6ce3f60c (patch)
treeaea37ac5804b3e2c159a8ce755b6b2db002048c1 /app/nextcloud/build
parent09269e8497793f97398ace2ebe7f2b70777788c8 (diff)
downloadinfrastructure-d40c41004d0f234140f5ec9fc029f4ef6ce3f60c.tar.gz
infrastructure-d40c41004d0f234140f5ec9fc029f4ef6ce3f60c.zip
Add bagage deployment
Diffstat (limited to 'app/nextcloud/build')
-rw-r--r--app/nextcloud/build/nextcloud/Dockerfile27
-rwxr-xr-xapp/nextcloud/build/nextcloud/container-setup.sh37
-rwxr-xr-xapp/nextcloud/build/nextcloud/entrypoint.sh8
3 files changed, 0 insertions, 72 deletions
diff --git a/app/nextcloud/build/nextcloud/Dockerfile b/app/nextcloud/build/nextcloud/Dockerfile
deleted file mode 100644
index 9f817f6..0000000
--- a/app/nextcloud/build/nextcloud/Dockerfile
+++ /dev/null
@@ -1,27 +0,0 @@
-FROM debian:10
-
-RUN apt-get update && \
- apt-get -qq -y full-upgrade
-
-RUN apt-get install -y apache2 php php-gd php-mbstring php-pgsql php-curl php-dom php-xml php-zip \
- php-intl php-ldap php-fileinfo php-exif php-apcu php-redis php-imagick unzip curl wget && \
- phpenmod gd && \
- phpenmod curl && \
- phpenmod mbstring && \
- phpenmod pgsql && \
- phpenmod dom && \
- phpenmod zip && \
- phpenmod intl && \
- phpenmod ldap && \
- phpenmod fileinfo && \
- phpenmod exif && \
- phpenmod apcu && \
- phpenmod redis && \
- phpenmod imagick && \
- phpenmod xml
-
-COPY container-setup.sh /tmp
-RUN /tmp/container-setup.sh
-
-COPY entrypoint.sh /
-CMD /entrypoint.sh
diff --git a/app/nextcloud/build/nextcloud/container-setup.sh b/app/nextcloud/build/nextcloud/container-setup.sh
deleted file mode 100755
index 8330291..0000000
--- a/app/nextcloud/build/nextcloud/container-setup.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-set -ex
-
-curl https://download.nextcloud.com/server/releases/nextcloud-19.0.0.zip > /tmp/nextcloud.zip
-cd /var/www
-unzip /tmp/nextcloud.zip
-rm /tmp/nextcloud.zip
-mv html html.old
-mv nextcloud html
-
-cd html
-mkdir data
-
-cd apps
-wget https://github.com/nextcloud/tasks/releases/download/v0.13.1/tasks.tar.gz
-tar xf tasks.tar.gz
-wget https://github.com/nextcloud/maps/releases/download/v0.1.6/maps-0.1.6.tar.gz
-tar xf maps-0.1.6.tar.gz
-wget https://github.com/nextcloud/calendar/releases/download/v2.0.3/calendar.tar.gz
-tar xf calendar.tar.gz
-wget https://github.com/nextcloud/news/releases/download/14.1.11/news.tar.gz
-tar xf news.tar.gz
-wget https://github.com/nextcloud/notes/releases/download/v3.6.0/notes.tar.gz
-tar xf notes.tar.gz
-wget https://github.com/nextcloud/contacts/releases/download/v3.3.0/contacts.tar.gz
-tar xf contacts.tar.gz
-wget https://github.com/nextcloud/mail/releases/download/v1.4.0/mail.tar.gz
-tar xf mail.tar.gz
-wget https://github.com/nextcloud/groupfolders/releases/download/v6.0.6/groupfolders.tar.gz
-tar xf groupfolders.tar.gz
-rm *.tar.gz
-
-chown -R www-data:www-data /var/www/html
-
-cd /var/www/html
-php occ
diff --git a/app/nextcloud/build/nextcloud/entrypoint.sh b/app/nextcloud/build/nextcloud/entrypoint.sh
deleted file mode 100755
index 72b4f94..0000000
--- a/app/nextcloud/build/nextcloud/entrypoint.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-set -xe
-
-chown www-data:www-data /var/www/html/config/config.php
-touch /var/www/html/data/.ocdata
-
-exec apachectl -DFOREGROUND