Compare commits
4 Commits
7dbd8c8fee
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
86325a4a45 | ||
![]() |
05685ce4a2 | ||
![]() |
f39e4e3bd9 | ||
![]() |
d66afe9b2d |
0
obsidian-logic/emulator-js/emulator-js.env
Normal file
0
obsidian-logic/emulator-js/emulator-js.env
Normal file
0
obsidian-logic/it-tools/it-tools.env
Normal file
0
obsidian-logic/it-tools/it-tools.env
Normal file
31
obsidian-logic/it-tools/it-tools.yml
Normal file
31
obsidian-logic/it-tools/it-tools.yml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# IT Tools
|
||||||
|
# Collection of various IT tools
|
||||||
|
# Created by CorentinTh
|
||||||
|
# ↳ https://github.com/CorentinTh/it-tools
|
||||||
|
|
||||||
|
services:
|
||||||
|
it-tools:
|
||||||
|
image: corentinth/it-tools:latest
|
||||||
|
container_name: it-tools
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
# ports:
|
||||||
|
# - 80:80
|
||||||
|
|
||||||
|
environment:
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
# Documentation available at https://github.com/CorentinTh/it-tools
|
@@ -0,0 +1 @@
|
|||||||
|
DOCKERGW=
|
0
obsidian-logic/searx/searx.env
Normal file
0
obsidian-logic/searx/searx.env
Normal file
61
obsidian-logic/searx/searx.yml
Normal file
61
obsidian-logic/searx/searx.yml
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# SearXNG
|
||||||
|
# Privacy Focused Search Engine
|
||||||
|
# Created by Searxng
|
||||||
|
# ↳ https://github.com/searxng/searxng
|
||||||
|
|
||||||
|
services:
|
||||||
|
searxng-server:
|
||||||
|
image: docker.io/searxng/searxng:latest
|
||||||
|
container_name: searxng
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- search
|
||||||
|
# ports:
|
||||||
|
# - 8080:8080
|
||||||
|
|
||||||
|
environment:
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /home/fxequals/docker/searxng/search:/etc/searxng:rw
|
||||||
|
|
||||||
|
searxng-redis:
|
||||||
|
image: docker.io/valkey/valkey:8-alpine
|
||||||
|
container_name: redis
|
||||||
|
restart: unless-stopped
|
||||||
|
command: valkey-server --save 30 1 --loglevel warning
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- search
|
||||||
|
|
||||||
|
environment:
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- /home/fxequals/docker/searsng/redis:/data
|
||||||
|
|
||||||
|
cap_drop:
|
||||||
|
- ALL
|
||||||
|
cap_add:
|
||||||
|
- SETGID
|
||||||
|
- SETUID
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
|
||||||
|
logging:
|
||||||
|
driver: "json-file"
|
||||||
|
options:
|
||||||
|
max-size: "1m"
|
||||||
|
max-file: "1"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
search:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
# Documentation available at https://docs.searxng.org/
|
@@ -0,0 +1,3 @@
|
|||||||
|
DB_USER=
|
||||||
|
DB_PASS=
|
||||||
|
DB_ROOT=
|
Reference in New Issue
Block a user