self-hosted-cookbook/apps/cloud/oasis.md

32 lines
542 B
Markdown
Raw Normal View History

2023-01-08 23:55:35 +00:00
# Seafile
- UX needs work.
- Drag & drop upload doesn't work in Safari
- Extremely basic in functionality
<br>
- [Github repo](https://github.com/machengim/oasis)
- [DockerHub repo](https://hub.docker.com/r/machengim/oasis)
![Screenshot](oasis.png)
## docker-compose.yml
```yml
---
services:
oasis:
image: machengim/oasis
container_name: oasis
restart: unless-stopped
environment:
- TZ=Europe/Dublin
ports:
- "3123:8000"
volumes:
- ./data:/opt/oasis/data
- ./storage:/home/storage
```