mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
chore: remove unneeded stuff
This commit is contained in:
@@ -14,14 +14,14 @@
|
|||||||
# is a lot faster than the build steps below.
|
# is a lot faster than the build steps below.
|
||||||
|
|
||||||
|
|
||||||
FROM owncloudci/nodejs:18 as generate
|
FROM owncloudci/nodejs:18 AS generate
|
||||||
|
|
||||||
COPY ./ /ocis/
|
COPY ./ /ocis/
|
||||||
|
|
||||||
WORKDIR /ocis/ocis
|
WORKDIR /ocis/ocis
|
||||||
RUN make ci-node-generate
|
RUN make ci-node-generate
|
||||||
|
|
||||||
FROM owncloudci/golang:1.22 as build
|
FROM owncloudci/golang:1.22 AS build
|
||||||
|
|
||||||
COPY --from=generate /ocis /ocis
|
COPY --from=generate /ocis /ocis
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ RUN make ci-go-generate build ENABLE_VIPS=true
|
|||||||
|
|
||||||
FROM alpine:3.20
|
FROM alpine:3.20
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates mailcap tree attr curl vips && \
|
RUN apk add --no-cache attr ca-certificates curl mailcap tree vips && \
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import (
|
|||||||
// CMDTest spawns a new independent test environment
|
// CMDTest spawns a new independent test environment
|
||||||
type CMDTest struct {
|
type CMDTest struct {
|
||||||
n string
|
n string
|
||||||
f func()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewCMDTest creates a new CMDTest instance
|
// NewCMDTest creates a new CMDTest instance
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ FROM amd64/alpine:3.20
|
|||||||
ARG VERSION=""
|
ARG VERSION=""
|
||||||
ARG REVISION=""
|
ARG REVISION=""
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates mailcap tree attr curl inotify-tools bash libc6-compat vips && \
|
RUN apk add --no-cache attr bash ca-certificates curl inotify-tools libc6-compat mailcap tree vips && \
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ FROM arm64v8/alpine:3.20
|
|||||||
ARG VERSION=""
|
ARG VERSION=""
|
||||||
ARG REVISION=""
|
ARG REVISION=""
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates mailcap tree attr curl inotify-tools bash libc6-compat vips && \
|
RUN apk add --no-cache attr bash ca-certificates curl inotify-tools libc6-compat mailcap tree vips && \
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ FROM amd64/alpine:latest
|
|||||||
ARG VERSION=""
|
ARG VERSION=""
|
||||||
ARG REVISION=""
|
ARG REVISION=""
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates mailcap tree attr curl inotify-tools bash libc6-compat vips delve && \
|
RUN apk add --no-cache attr bash ca-certificates curl delve inotify-tools libc6-compat mailcap tree vips && \
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Graph" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9120 9124
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-graph"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-graph /usr/bin/ocis-graph
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Graph" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9120 9124
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-graph"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-graph /usr/bin/ocis-graph
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Graph" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9120 9124
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-graph"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-graph /usr/bin/ocis-graph
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-graph:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-graph:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-graph:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-graph:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS LibreGraph Connect" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9130 9134
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-idp"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-idp /usr/bin/ocis-idp
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS LibreGraph Connect" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9130 9134
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-idp"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-idp /usr/bin/ocis-idp
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS LibreGraph Connect" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9130 9134
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-idp"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-idp /usr/bin/ocis-idp
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-idp:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS OCS" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-ocs"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-ocs /usr/bin/ocis-ocs
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS OCS" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-ocs"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-ocs /usr/bin/ocis-ocs
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS OCS" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-ocs"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-ocs /usr/bin/ocis-ocs
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-ocs:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-ocs:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-ocs:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-ocs:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Proxy" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9180
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-proxy"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-proxy /usr/bin/ocis-proxy
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Proxy" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9180
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-proxy"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-proxy /usr/bin/ocis-proxy
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Proxy" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9180
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-proxy"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-proxy /usr/bin/ocis-proxy
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-proxy:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-proxy:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-proxy:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-proxy:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Settings" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9190 9194
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-settings"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-settings /usr/bin/ocis-settings
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Settings" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9190 9194
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-settings"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-settings /usr/bin/ocis-settings
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Settings" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9190 9194
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-settings"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-settings /usr/bin/ocis-settings
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-settings:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-settings:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-settings:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-settings:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Thumbnails" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-thumbnails"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-thumbnails /usr/bin/ocis-thumbnails
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Thumbnails" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-thumbnails"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-thumbnails /usr/bin/ocis-thumbnails
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Thumbnails" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9110 9114
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-thumbnails"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-thumbnails /usr/bin/ocis-thumbnails
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-thumbnails:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-thumbnails:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-thumbnails:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-thumbnails:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Web" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9100 9104
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/web"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/web /usr/bin/web
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Web" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9100 9104
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/web"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/web /usr/bin/web
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS Web" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9100 9104
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/web"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/web /usr/bin/web
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-web:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-web:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-web:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-web:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM amd64/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS WebDAV" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9115 9119
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-webdav"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-webdav /usr/bin/ocis-webdav
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm32v6/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS WebDAV" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9115 9119
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-webdav"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-webdav /usr/bin/ocis-webdav
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM arm64v8/alpine:latest
|
|
||||||
|
|
||||||
RUN apk update && \
|
|
||||||
apk upgrade && \
|
|
||||||
apk add ca-certificates mailcap && \
|
|
||||||
rm -rf /var/cache/apk/* && \
|
|
||||||
echo 'hosts: files dns' >| /etc/nsswitch.conf
|
|
||||||
|
|
||||||
LABEL maintainer="ownCloud GmbH <devops@owncloud.com>" \
|
|
||||||
org.label-schema.name="oCIS WebDAV" \
|
|
||||||
org.label-schema.vendor="ownCloud GmbH" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
EXPOSE 9115 9119
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/ocis-webdav"]
|
|
||||||
CMD ["server"]
|
|
||||||
|
|
||||||
COPY bin/ocis-webdav /usr/bin/ocis-webdav
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
image: owncloud/ocis-webdav:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
|
||||||
{{#if build.tags}}
|
|
||||||
tags:
|
|
||||||
{{#each build.tags}}
|
|
||||||
- {{this}}
|
|
||||||
{{/each}}
|
|
||||||
{{/if}}
|
|
||||||
manifests:
|
|
||||||
- image: owncloud/ocis-webdav:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
|
|
||||||
platform:
|
|
||||||
architecture: amd64
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-webdav:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
|
|
||||||
platform:
|
|
||||||
architecture: arm64
|
|
||||||
variant: v8
|
|
||||||
os: linux
|
|
||||||
- image: owncloud/ocis-webdav:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm
|
|
||||||
platform:
|
|
||||||
architecture: arm
|
|
||||||
variant: v6
|
|
||||||
os: linux
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!bin/
|
|
||||||
Reference in New Issue
Block a user