1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

DockerでRadicale 3.0なうに使っていいよ。

Last updated at Posted at 2020-06-28

#Radicale 3.0リリース
Radicaleの新バージョンがリリースされていたので、公開しているDockerイメージを更新しました。
https://hub.docker.com/r/takeyamajp/radicale

Dockerfileはこちらです。
https://github.com/takeyamajp/docker-radicale/blob/master/centos8/Dockerfile

旧バージョンの記事はこちら。
https://qiita.com/takeyamajp/items/d7194853b0cbd3d5ef7a

#概要
ほとんどの方は、カレンダーやリマインダー、そして連絡先などの個人情報をGoogleやApple、Microsoftなどに預けていると思います。
Radicaleは、それらの情報を保管する事ができるサーバーソフトウェアです。
https://radicale.org

自宅にDocker環境がある方は、すぐにでも個人情報を自分で管理し始めることが出来ます。

FROM centos:centos8

...

ENV TIMEZONE Asia/Tokyo

ENV SSL true

ENV LOG_LEVEL warning

ENV USER user1,user2
ENV PASSWORD password1,password2

VOLUME /radicale

EXPOSE 5232

管理画面には、下記のコマンドで起動してhttp://localhost:5232/にアクセスしてみて下さい。
スマホなどに登録するときはhttp://localhost:5232/user/みたいな感じて設定して下さい。(userの部分はユーザー名です)

docker run -d --name radicale \
       -e TIMEZONE=Asia/Tokyo \
       -e SSL=false \
       -e USER=user \
       -e PASSWORD=password \
       -p 5232:5232 \
       takeyamajp/radicale;

DockerHubやGitHubでスター頂けると励みになります。
それでは、良いRadicaleライフを。

1
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?