mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
Added support for docker-compose
This commit is contained in:
parent
e22dc2ba36
commit
c150b0e5ad
1 changed files with 13 additions and 0 deletions
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
version: '3'
|
||||
services:
|
||||
searxng:
|
||||
container_name: searxng
|
||||
image: searxng/searxng
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- BASE_URL=http://localhost:8080
|
||||
- INSTANCE_NAME=my-instance
|
||||
volumes:
|
||||
- ./searxng:/etc/searxng
|
||||
ports:
|
||||
- 8080:8080
|
Loading…
Add table
Reference in a new issue