Skip to content

Commit

Permalink
update: ownCloud and Nextcloud versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiBaghbani committed Feb 28, 2024
1 parent a28beb6 commit 065f66c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Docker images we use in development.

upstream: [Nextcloud Server Official](https://github.com/nextcloud/server)

branch: [v27.1.2](https://github.com/nextcloud/server/releases/tag/v27.1.2)
branch: [v28.0.2](https://github.com/nextcloud/server/releases/tag/v28.0.2)

## ownCloud version

upstream: [ownCloud Core Official](https://github.com/owncloud/core)

branch: [v10.13.2](https://github.com/owncloud/core/releases/tag/v10.13.2)
branch: [v10.14.0](https://github.com/owncloud/core/releases/tag/v10.14.0)

# Debugging
## RD-SRAM
Expand Down
2 changes: 0 additions & 2 deletions docker/dockerfiles/owncloud-ocm-test-suite.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ RUN cd apps/sciencemesh && git pull
RUN cd apps/sciencemesh && make
RUN cd apps && ln --symbolic --force oc-opencloudmesh/opencloudmesh

RUN cat /etc/ssl/certs/ca-certificates.crt >> /var/www/html/resources/config/ca-bundle.crt

# this file can be overrided in docker run or docker compose.yaml.
# example: docker run --volume new-init.sh:/init.sh:ro
COPY ./scripts/init-owncloud-sm-ocm.sh /init.sh
Expand Down
1 change: 0 additions & 1 deletion docker/dockerfiles/owncloud-opencloudmesh.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ RUN git clone \
apps/oc-opencloudmesh

RUN cd apps && ln --symbolic --force oc-opencloudmesh/opencloudmesh
RUN cat /etc/ssl/certs/ca-certificates.crt >> /var/www/html/resources/config/ca-bundle.crt

# this file can be overrided in docker run or docker compose.yaml.
# example: docker run --volume new-init.sh:/init.sh:ro
Expand Down
1 change: 1 addition & 0 deletions docker/dockerfiles/owncloud-rd-sram.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ RUN git clone \
RUN cd apps && ln --symbolic --force rd-sram-integration/federatedgroups

COPY ./rd-sram/curls /curls

# this file can be overrided in docker run or docker compose.yaml.
# example: docker run --volume new-init.sh:/init.sh:ro
COPY ./scripts/init-owncloud-rd-sram.sh /init.sh
Expand Down
3 changes: 2 additions & 1 deletion docker/dockerfiles/owncloud.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN rm --recursive --force /var/www/html
USER www-data

ARG REPO_OWNCLOUD=https://github.com/owncloud/core
ARG BRANCH_OWNCLOUD=v10.13.2
ARG BRANCH_OWNCLOUD=v10.14.0
# CACHEBUST forces docker to clone fresh source codes from git.
# example: docker build -t your-image --build-arg CACHEBUST="default" .
# $RANDOM returns random number each time.
Expand Down Expand Up @@ -50,4 +50,5 @@ RUN composer install --no-dev
RUN make install-nodejs-deps

USER root
RUN cat /etc/ssl/certs/ca-certificates.crt >> /var/www/html/resources/config/ca-bundle.crt
CMD /usr/sbin/apache2ctl -DFOREGROUND & tail --follow /var/log/apache2/access.log & tail --follow /var/log/apache2/error.log & tail --follow data/owncloud.log

0 comments on commit 065f66c

Please sign in to comment.