mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 20:19:11 +00:00
31 lines
796 B
Markdown
31 lines
796 B
Markdown
# Mealie
|
|
- Pretty good configuration options & functionality
|
|
- Bulk entry for ingredients and preparation steps!
|
|
- Auto-import from URLs (provided they support Recipe Microdata)
|
|
- Excellent documentation
|
|
- Monotonous UI in a dreadful material style (poor UX)
|
|
- Not accessible nor keyboard friendly (poor UX)
|
|
- There are categories but you can't filter or group recipes (no tree-like navigation)
|
|
|
|
<br>
|
|
|
|
- [Github repo](https://github.com/hay-kot/mealie/)
|
|
- [Homepage](https://hay-kot.github.io/mealie/)
|
|
|
|
![Screenshot](mealie.png)
|
|
|
|
|
|
## docker-compose.yml
|
|
```yml
|
|
version: '3.3'
|
|
services:
|
|
dashmachine:
|
|
image: rmountjoy/dashmachine:latest
|
|
container_name: dashmachine
|
|
restart: unless-stopped
|
|
ports:
|
|
- 4010:5000
|
|
volumes:
|
|
- ./data:/dashmachine/dashmachine/user_data
|
|
```
|