0
0
opnxng-deploy-playbook/templates/compose/paulgo.yaml.j2

64 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-11-06 10:39:27 +08:00
# {{ ansible_managed }}
version: '3.7'
services:
searxng:
image: git.opnxng.com/opnxng/searxng
restart: always
container_name: searxng
security_opt:
- no-new-privileges
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Singapore
- LIMITER=true
- REDIS_URL=redis://localhost:6379/0
- IMAGE_PROXY=true
- BASE_URL=https://opnxng.com/
- NAME=SearXNG
- CONTACT=https://about.opnxng.com/
- ISSUE_URL=https://github.com/searxng/searxng/issues
- GIT_URL=https://github.com/paulgoio/searxng
- GIT_BRANCH=main
2023-11-15 03:06:53 +08:00
- UWSGI_WORKERS=1
- UWSGI_THREADS=16
2023-11-06 10:39:27 +08:00
depends_on:
2023-11-29 06:49:58 +08:00
- searxng-redis
2023-11-06 10:39:27 +08:00
volumes:
2023-11-14 19:35:34 +08:00
- {{ docker_dir }}/paulgo/settings.yml:/usr/local/searxng/searx/settings.yml
2023-11-06 10:39:27 +08:00
- {{ docker_dir }}/paulgo/donate.md:/usr/local/searxng/searx/infopage/en/donate.md
network_mode: host
2023-11-29 06:49:58 +08:00
searxng-redis:
container_name: searxng-redis
image: "docker.io/library/redis:alpine"
command: redis-server --save 30 1 --loglevel warning
2023-11-06 10:39:27 +08:00
security_opt:
- no-new-privileges
environment:
2023-11-29 06:49:58 +08:00
#- PUID=1000
#- PGID=1000
2023-11-06 10:39:27 +08:00
- TZ=Asia/Singapore
2023-11-29 06:49:58 +08:00
volumes:
- {{ docker_dir }}/paulgo/redis-data:/data
2023-11-06 10:39:27 +08:00
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
restart: always
2023-11-15 03:06:53 +08:00
network_mode: host