mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
288 B
12 lines
288 B
5 years ago
|
#/bin/sh
|
||
|
docker stop radicale
|
||
|
docker rm radicale
|
||
|
docker pull tomsquest/docker-radicale:2.1.11.4
|
||
|
docker run --name radicale \
|
||
|
--restart unless-stopped \
|
||
|
--read-only \
|
||
|
-p 5232:5232 \
|
||
|
-v radicale_data:/data \
|
||
|
-v radicale_config:/config \
|
||
|
-d tomsquest/docker-radicale:2.1.11.4
|