Skip to content

Commit

Permalink
Updated to Baikal 0.9.1
Browse files Browse the repository at this point in the history
Relates to  #52
  • Loading branch information
ckulka committed Jan 12, 2022
1 parent 080a5bc commit ab2c79e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ I follow the same version naming scheme as [Baikal](http://sabre.io/baikal/) the

The following tags support multiple architectures, e.g. `amd64`, `arm32v7` and `arm64v8`.

- [`0.9.0`, `0.9.0-apache`, `apache`, `latest`](https://github.com/ckulka/baikal-docker/blob/0.9.0/apache.dockerfile)
- [`0.9.0-nginx`, `nginx`](https://github.com/ckulka/baikal-docker/blob/0.9.0/nginx.dockerfile)
- [`0.9.1`, `0.9.1-apache`, `apache`, `latest`](https://github.com/ckulka/baikal-docker/blob/0.9.0/apache.dockerfile)
- [`0.9.1-nginx`, `nginx`](https://github.com/ckulka/baikal-docker/blob/0.9.0/nginx.dockerfile)
- [`0.9.0`, `0.9.0-apache`](https://github.com/ckulka/baikal-docker/blob/0.9.0/apache.dockerfile)
- [`0.9.0-nginx`](https://github.com/ckulka/baikal-docker/blob/0.9.0/nginx.dockerfile)
- [`0.8.0`, `0.8.0-apache`](https://github.com/ckulka/baikal-docker/blob/0.8.0/apache.dockerfile)
- [`0.8.0-nginx`,](https://github.com/ckulka/baikal-docker/blob/0.8.0/nginx.dockerfile)

Expand Down
4 changes: 2 additions & 2 deletions apache.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Multi-stage build, see https://docs.docker.com/develop/develop-images/multistage-build/
FROM alpine AS builder

ENV VERSION 0.9.0
ENV VERSION 0.9.1

ADD https://github.com/sabre-io/Baikal/releases/download/$VERSION/baikal-$VERSION.zip .
RUN apk add unzip && unzip -q baikal-$VERSION.zip
Expand All @@ -10,7 +10,7 @@ RUN apk add unzip && unzip -q baikal-$VERSION.zip
FROM php:8.1-apache

LABEL description="Baikal is a Cal and CardDAV server, based on sabre/dav, that includes an administrative interface for easy management."
LABEL version="0.9.0"
LABEL version="0.9.1"
LABEL repository="https://github.com/ckulka/baikal-docker"
LABEL website="http://sabre.io/baikal/"

Expand Down
4 changes: 2 additions & 2 deletions nginx.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Multi-stage build, see https://docs.docker.com/develop/develop-images/multistage-build/
FROM alpine AS builder

ENV VERSION 0.9.0
ENV VERSION 0.9.1

ADD https://github.com/sabre-io/Baikal/releases/download/$VERSION/baikal-$VERSION.zip .
RUN apk add unzip && unzip -q baikal-$VERSION.zip
Expand All @@ -10,7 +10,7 @@ RUN apk add unzip && unzip -q baikal-$VERSION.zip
FROM nginx:1

LABEL description="Baikal is a Cal and CardDAV server, based on sabre/dav, that includes an administrative interface for easy management."
LABEL version="0.9.0"
LABEL version="0.9.1"
LABEL repository="https://github.com/ckulka/baikal-docker"
LABEL website="http://sabre.io/baikal/"

Expand Down

0 comments on commit ab2c79e

Please sign in to comment.