mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			492 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			492 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Memos
 | 
						|
An open-source, self-hosted memo hub with knowledge management and collaboration.
 | 
						|
 | 
						|
- Really easy to setup and use
 | 
						|
- Has a dedicated mobile client!
 | 
						|
- Quite good UX
 | 
						|
 | 
						|
<br>
 | 
						|
 | 
						|
- [Homepage](https://usememos.com)
 | 
						|
- [Github repo](https://github.com/usememos/memos)
 | 
						|
- [Mobile client](https://memos.moe)
 | 
						|
 | 
						|
 | 
						|
## docker-compose.yml
 | 
						|
```yaml
 | 
						|
---
 | 
						|
services:
 | 
						|
  memos:
 | 
						|
    image: neosmemo/memos:latest
 | 
						|
    container_name: memos
 | 
						|
    volumes:
 | 
						|
      - ./memos:/var/opt/memos
 | 
						|
    ports:
 | 
						|
      - 5230:5230
 | 
						|
```
 |