36 lines
No EOL
818 B
YAML
36 lines
No EOL
818 B
YAML
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
|
|
networks:
|
|
- proxy
|
|
|
|
syncthing:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
container_name: syncthing
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=Europe/Amsterdam
|
|
- LETSENCRYPT_HOST=st.faulty.nl
|
|
- VIRTUAL_HOST=st.faulty.nl
|
|
- VIRTUAL_PORT=8384
|
|
volumes:
|
|
- /srv/syncthing/config:/config
|
|
- /srv/syncthing/data:/local
|
|
- /mnt/stash:/remote
|
|
ports:
|
|
- 22000:22000/tcp
|
|
- 22000:22000/udp
|
|
- 21027:21027/udp
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy |