added core

This commit is contained in:
andreas
2023-04-01 20:44:25 +00:00
parent 543a183545
commit 5efba5e7b8
10 changed files with 112 additions and 42 deletions

View File

@@ -15,9 +15,10 @@ apt-get install -f -y --no-install-recommends
wget --no-verbose -P/tmp http://bldr/webapp-6.0.0.57.1049268-Ubuntu_20.04-all.tar.gz
tar xzf /tmp/webapp-6.0.0.57.1049268-Ubuntu_20.04-all.tar.gz
for F in webapp-6.0.0.57.1049268-Ubuntu_20.04-all/*.deb; do dpkg --unpack --no-triggers $F; done
apt-get install -f -y --no-install-recommends
apt-get install -f -y --no-install-recommends
apt-get install -y --no-install-recommends libapache2-mod-php7.4
a2ensite kopano-webapp
# cleanup
apt-get autoclean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.cache ~/.npm
rm -rf webapp-6.0.0.57.1049268-Ubuntu_20.04-all

View File

@@ -3,9 +3,7 @@
docker run -d --rm --name www -p80:80 -v/root/kopano-docker/dist:/usr/local/apache2/htdocs httpd
docker build --no-cache --progress=plain -t webapp .
docker build -t webapp .
docker run --rm -it --name webapp \
-p8080:80 \
webapp
docker run -it --name webapp -p8080:80 webapp
docker logs -f webapp
docker exec -it webapp bash