You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are the steps to install Radicale via Docker Compose:
2789
2792
@@ -2815,7 +2818,11 @@ Here are the steps to install Radicale via Docker Compose:
2815
2818
2816
2819
3. Create Radicale configuration file as necessary
2817
2820
2818
-
Create new or place existing configuration file in the `./config` directory.
2821
+
Create a new configuration file or place an existing one in the `./config` directory.
2822
+
2823
+
2824
+
**Note**: This section demonstrates only basic steps to setup Radicale using `docker compose`. For details on configuring Radicale, including authentication, please refer to the documentation for [Basic Configuration](#basic-configuration) or detailed [Configuration](#configuration)
2825
+
2819
2826
2820
2827
4. Start Radicale
2821
2828
@@ -2825,6 +2832,28 @@ Here are the steps to install Radicale via Docker Compose:
2825
2832
2826
2833
This will start the Radicale container in detached mode.
2827
2834
2835
+
2836
+
To view the logs of the running container, run:
2837
+
2838
+
```bash
2839
+
$ docker compose logs -f
2840
+
```
2841
+
2842
+
To stop the container, run this from the current directory:
2843
+
2844
+
```bash
2845
+
$ docker compose down
2846
+
```
2847
+
2848
+
##### Available tags
2849
+
2850
+
* `stable`: Points to the latest stable release. This is recommended for most users.
2851
+
* Major.Minor.Patch (e.g. `3.6.1`): Points to a specific release version.
2852
+
* Major.Minor (e.g. `3.6`): Tracks the latest release for a minor version.
2853
+
* Major (e.g. `3`): Tracks the latest release for a major version.
0 commit comments