Create Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
export PORT=7860
|
2 |
+
docker pull searx/searx
|
3 |
+
docker run --rm -d -v ${PWD}/searx:/etc/searx -p $PORT:8080 -e BASE_URL=http://localhost:$PORT/ searx/searx
|