update recovered sdlc git repo

This commit is contained in:
andreas
2024-02-11 11:54:51 +00:00
parent f808ebae4a
commit 6b2eb41193
82 changed files with 3903 additions and 53 deletions

View File

@@ -25,8 +25,9 @@ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.cache ~/.npm
rm -rf core-11.0.2.50.507cbae-Ubuntu_20.04-amd64
EOF
# use envsubst in entrypoint script to convert config templates to actual config files
COPY 30-z-push.ini /etc/php/7.4/apache2/conf.d
COPY --chmod=0775 entrypoint.sh /entrypoint.sh
COPY etc-template /root/etc
COPY z-push/30-z-push.ini /etc/php/7.4/apache2/conf.d
COPY --chmod=0775 z-push/entrypoint.sh /entrypoint.sh
EXPOSE 80
VOLUME /etc/z-push
VOLUME /var/lib/z-push

View File

@@ -1,8 +1,8 @@
#!/usr/bin/bash
# export DOCKER_BUILDKIT=1
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 z-push .
docker build -t z-push .
docker build --no-cache --progress=plain -t z-push -f z-push/Dockerfile .
docker build -t z-push -f z-push/Dockerfile .
docker run --rm -it --name z-push -p8081:80 z-push bash
docker logs -f z-push
docker exec -it z-push bash