From 4c3d1eb43b1d808a33fff155ef812fff4d26bca0 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Sat, 2 Sep 2023 07:33:19 -0400 Subject: [PATCH] add README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2da58a1 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# OwnCloud "Infinite Scale" + +OCIS is an alternative to OwnCloud/NextCloud which comes with a much more limited +feature-set, but eliminates the performance and (🤞) stability issues inherent to +those legacy codebases due to their having been written in PHP. OCIS is written +in Go and provides a singles static binary, which creates that strict barrier +between application code and persistent data which has bitten me so many times. + +## First run +If you've just cloned this to a new machine, you have to bootstrap the service: + +```console +$ mkdir -p mounts/{config,data} +$ docker compose run init +``` + +## Subsequent runs +The application requires nothing special, just a `docker compose up`. \ No newline at end of file