diff --git a/docker-compose.utils.yml b/docker-compose.utils.yml new file mode 100644 index 0000000..2884662 --- /dev/null +++ b/docker-compose.utils.yml @@ -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 diff --git a/docker-compose.web.yml b/docker-compose.web.yml new file mode 100644 index 0000000..5cfc782 --- /dev/null +++ b/docker-compose.web.yml @@ -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