Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soltanoff/pi-owncloud-docker-compose
ownCloud docker compose stack for Raspberry PI 4+
https://github.com/soltanoff/pi-owncloud-docker-compose
keydb mariadb owncloud owncloud-server raspberry-pi
Last synced: 3 days ago
JSON representation
ownCloud docker compose stack for Raspberry PI 4+
- Host: GitHub
- URL: https://github.com/soltanoff/pi-owncloud-docker-compose
- Owner: soltanoff
- License: mit
- Created: 2024-05-18T21:22:40.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-03T00:13:22.000Z (2 months ago)
- Last Synced: 2024-11-03T01:17:45.840Z (2 months ago)
- Topics: keydb, mariadb, owncloud, owncloud-server, raspberry-pi
- Language: Makefile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ownCloud docker stack
Services:
- `ownCloud` image: https://hub.docker.com/r/owncloud/server
- `MariaDB` image: https://hub.docker.com/r/yobasystems/alpine-mariadb
- `KeyDB` image: https://hub.docker.com/r/eqalpha/keydbInstallation and upgrade guide: https://doc.owncloud.com/server/next/admin_manual/installation/docker
## Setting up a stack
- Set up your .env file (template [.env-example](.env-example))
```shell
cp .env-example .env
```
- Start building the stack and running it
```shell
make build && make up
```## Starting a stack
```shell
make up
```## Updating a stack
```shell
make update
```## Stopping the stack (with `--remove-orphans` mode)
```shell
make down
```