* simplify back to single config.env! - back to good ole env vars! - remove shared secret, which made it difficult to have scheduled crawls, since secrets are immutable, so could not update config if a scheduled crawl existed :/ - all env vars unified in configs/config.env - run-swarm.sh and run-pod.sh 'source' this config - remove config.sample.yaml - customize minio volume dir via config.env - customize redis port via config.env - include authsign ports in debug-ports config
		
			
				
	
	
		
			25 lines
		
	
	
		
			390 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			390 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # enable additional ports for debugging
 | |
| 
 | |
| version: '3.8'
 | |
| 
 | |
| services:
 | |
|   # enable backend directly
 | |
|   backend:
 | |
|     ports:
 | |
|       - 8000:8000
 | |
| 
 | |
|   # enable minio data and console access directly
 | |
|   minio:
 | |
|     ports:
 | |
|       - 9001:9001
 | |
|       - 9000:9000
 | |
| 
 | |
|     environment:
 | |
|       - MINIO_SERVER_URL=http://127.0.0.1:9000
 | |
| 
 | |
|   # enable direct access to signing api
 | |
|   authsign:
 | |
|     ports:
 | |
|       - 8080:8080
 | |
| 
 |