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

Dockerfile « nextcloudplus « docker-armhf - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01cc58d9360640fa6047d79354c8775021f4acfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
FROM ownyourbits/nextcloud-armhf

MAINTAINER Ignacio Núñez Hernanz <nacho@ownyourbits.com>

SHELL ["/bin/bash", "-c"]

ENV DOCKERBUILD 1

COPY ncp.sh /usr/local/etc/

RUN \

# mark as image build
touch /.ncp-image; \

# mark as docker image
touch /.docker-image; \

apt-get update; \
apt-get install --no-install-recommends -y wget ca-certificates; \
      
# install nextcloudpi
source /usr/local/etc/library.sh; \
set +x; \
cd /usr/local/etc/; \
install_script ncp.sh; \

# stop mysqld and redis
mysqladmin -u root shutdown; \
kill $( cat /run/redis/redis-server.pid ); \
kill $( cat /run/crond.pid ); \

# fix default paths
sed -i 's|/media/USBdrive|/data/backups|' ncp-config.d/nc-backup.sh; \

# specific cleanup
rm /usr/local/etc/ncp.sh; \
rm /.ncp-image; \

# remove wizard for now
rm -r /var/www/ncp-web/wizard; \

# cleanup all NCP extras
source /usr/local/etc/library.sh; \
cd /usr/local/etc/ncp-config.d/; \
for script in *.sh; do cleanup_script $script; done; \

# letsencrypt build artifacts cleanup
apt-get purge -y \
  make \
  binutils \
  cpp \
  cpp-6 \
  gcc \
  gcc-6 \
  libasan3 \
  libaugeas0 \
  libc-dev-bin \
  libc6-dev \
  libcc1-0 \
  libexpat1-dev \
  libffi-dev \
  libgcc-6-dev \
  libgomp1 \
  libisl15 \
  libmpc3 \
  libubsan0 \
  linux-libc-dev \
  python-virtualenv \
  python-pkg-resources \
  python3-pkg-resources \
  python3-virtualenv \
  virtualenv; \

# package clean up
apt-get autoremove -y; \
apt-get clean; \
rm -f /var/lib/apt/lists/*; \
rm -rf /usr/share/man/*; \
rm -rf /usr/share/doc/*; \
rm -f /var/log/alternatives.log /var/log/apt/*; \
rm /var/cache/debconf/*-old; 

COPY docker-common/nextcloudpi/000ncp /etc/services-enabled.d/

# 4443 - ncp-web
EXPOSE 80 443 4443