12 lines
235 B
YAML
12 lines
235 B
YAML
version: "3.9"
|
|
services:
|
|
searxng:
|
|
deploy:
|
|
replicas: 3
|
|
restart: always
|
|
image: searxng/searxng
|
|
volumes:
|
|
- "/etc/timezone:/etc/timezone:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
ports:
|
|
- 8080:8080 |