You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	add searxng
This commit is contained in:
		| @@ -514,6 +514,7 @@ A collection of delicious docker recipes. | ||||
|   - [x] node-firefox | ||||
|   - [x] standalone-firefox | ||||
| - [x] ghcr.io/roapi/roapi | ||||
| - [x] docker.io/searxng/searxng | ||||
| - [x] aerokube | ||||
|   - [x] selenoid | ||||
|     - [x] video-recorder | ||||
|   | ||||
							
								
								
									
										7
									
								
								searxng/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								searxng/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| searxng | ||||
| ======= | ||||
|  | ||||
| [SearXNG][1] is a free internet metasearch engine which aggregates results from | ||||
| various search services and databases. Users are neither tracked nor profiled. | ||||
|  | ||||
| [1]: https://github.com/searxng/searxng | ||||
							
								
								
									
										22
									
								
								searxng/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								searxng/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| services: | ||||
|  | ||||
|   searxng: | ||||
|     image: docker.io/searxng/searxng:latest | ||||
|     ports: | ||||
|       - "8080:8080" | ||||
|     volumes: | ||||
|       - ./data/searxng:/etc/searxng:rw | ||||
|     environment: | ||||
|       - SEARXNG_BASE_URL=https://searxng.easypi.duckdns.org/ | ||||
|       - UWSGI_WORKERS=4 | ||||
|       - UWSGI_THREADS=4 | ||||
|     depends_on: | ||||
|       - redis | ||||
|     restart: unless-stopped | ||||
|  | ||||
|   redis: | ||||
|     image: docker.io/valkey/valkey:8-alpine | ||||
|     command: valkey-server --save 30 1 --loglevel warning | ||||
|     volumes: | ||||
|       - ./data/redis:/data | ||||
|     restart: unless-stopped | ||||
		Reference in New Issue
	
	Block a user