You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			692 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			692 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # This compose file can be used in development to run both the database and app
 | |
| # within Docker.
 | |
| 
 | |
| version: '3'
 | |
| 
 | |
| services:
 | |
|     app:
 | |
|         build:
 | |
|             context: .
 | |
|             dockerfile: Dockerfile.server
 | |
|         ports:
 | |
|             - "22300:22300"
 | |
|         environment:
 | |
|             - DB_CLIENT=pg
 | |
|             - POSTGRES_PASSWORD=joplin
 | |
|             - POSTGRES_DATABASE=joplin
 | |
|             - POSTGRES_USER=joplin
 | |
|             - POSTGRES_PORT=5432
 | |
|             - POSTGRES_HOST=localhost
 | |
|     db:
 | |
|         image: postgres:13.1
 | |
|         ports:
 | |
|             - "5432:5432"
 | |
|         environment:
 | |
|             - POSTGRES_PASSWORD=joplin
 | |
|             - POSTGRES_USER=joplin
 | |
|             - POSTGRES_DB=joplin
 |