add: searx and web
This commit is contained in:
parent
45a751e736
commit
76b95bfef0
2 changed files with 22 additions and 0 deletions
12
docker-compose.utils.yml
Normal file
12
docker-compose.utils.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
searx:
|
||||||
|
restart: always
|
||||||
|
image: searxng/searxng
|
||||||
|
volumes:
|
||||||
|
- /srv/searx/config:/etc/searxng
|
||||||
|
environment:
|
||||||
|
- LETSENCRYPT_HOST=search.faulty.nl
|
||||||
|
- VIRTUAL_HOST=search.faulty.nl
|
||||||
|
- BASE_URL=https://search.faulty.nl
|
10
docker-compose.web.yml
Normal file
10
docker-compose.web.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
version: '2.2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: nginx:alpine
|
||||||
|
environment:
|
||||||
|
- VIRTUAL_HOST=faulty.nl
|
||||||
|
- LETSENCRYPT_HOST=faulty.nl
|
||||||
|
volumes:
|
||||||
|
- /srv/www/faulty.nl:/usr/share/nginx/html
|
Reference in a new issue