* 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
		
			
				
	
	
		
			14 lines
		
	
	
		
			306 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			306 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| compose=docker-compose
 | |
| 
 | |
| # can optionally be used with podman-compose
 | |
| #compose=podman-compose
 | |
| 
 | |
| CURR=$(dirname "${BASH_SOURCE[0]}")
 | |
| 
 | |
| export DOCKER_HOST=unix://${XDG_RUNTIME_DIR}/podman/podman.sock
 | |
| 
 | |
| $compose -f $CURR/../docker-compose.yml -f $CURR/../configs/docker-compose.podman.yml down -t 0
 | |
| 
 |