mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2026-01-29 04:19:44 +01:00
Compare commits
27 Commits
0efed82434
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 96726e8952 | |||
| f7ed46d559 | |||
| ada9ea87e3 | |||
| 0aeb48ed76 | |||
| 87c552f810 | |||
| 9ead94bcee | |||
| 8965ce1e13 | |||
| 68381f0537 | |||
| 239d03cf33 | |||
| a60812fc92 | |||
| 89993d68f3 | |||
| f0681c030e | |||
| 0987be36ea | |||
| 3d85e4f25c | |||
| a31e4dc5aa | |||
| f1cc2d15f9 | |||
| cb3831e60e | |||
| 9562ac0488 | |||
| fa09207193 | |||
| ff123fc038 | |||
| 5c06f57f75 | |||
| d82d79bfaf | |||
| 7dd04ce45e | |||
| 59cdb07709 | |||
| dcc851e91a | |||
| 429302912e | |||
| ab0333ba3a |
33
kopia/docker-compose.yml
Normal file
33
kopia/docker-compose.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
version: '3.7'
|
||||||
|
services:
|
||||||
|
kopia:
|
||||||
|
image: kopia/kopia:latest
|
||||||
|
hostname: Hostname
|
||||||
|
container_name: Kopia
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 51515:51515
|
||||||
|
# Setup the server that provides the web gui
|
||||||
|
command:
|
||||||
|
- server
|
||||||
|
- start
|
||||||
|
- --disable-csrf-token-checks
|
||||||
|
- --insecure
|
||||||
|
- --address=0.0.0.0:51515
|
||||||
|
- --server-username=jaydee
|
||||||
|
- --server-password=l4c1j4yd33Du5lo
|
||||||
|
environment:
|
||||||
|
# Set repository password
|
||||||
|
KOPIA_PASSWORD: "l4c1j4yd33Du5lo"
|
||||||
|
USER: "jaydee"
|
||||||
|
volumes:
|
||||||
|
# Mount local folders needed by kopia
|
||||||
|
- /share/docker_data/kopia/config/dir:/app/config
|
||||||
|
- /share/docker_data/kopia/cache/dir:/app/cache
|
||||||
|
- /share/docker_data/kopia/logs/dir:/app/logs
|
||||||
|
# Mount local folders to snapshot
|
||||||
|
- /var/lib/docker/volumes:/data:ro
|
||||||
|
# Mount repository location
|
||||||
|
- /media/nas/data/docker_data/kopia/repository:/repository
|
||||||
|
# Mount path for browsing mounted snapshots
|
||||||
|
- /share/docker_data/kopia/tmp/dir:/tmp:shared
|
||||||
@@ -248,9 +248,12 @@ services:
|
|||||||
- jellyseerr_config:/app/config
|
- jellyseerr_config:/app/config
|
||||||
lidarr:
|
lidarr:
|
||||||
container_name: lidarr
|
container_name: lidarr
|
||||||
|
dns:
|
||||||
|
- 8.8.8.8
|
||||||
|
- 192.168.77.101
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
# - PUID=1000
|
||||||
- PGID=1000
|
# - PGID=1000
|
||||||
- TZ=Europe/Bratislava
|
- TZ=Europe/Bratislava
|
||||||
hostname: lidarr
|
hostname: lidarr
|
||||||
image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/lidarr:latest
|
image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/lidarr:latest
|
||||||
|
|||||||
@@ -9,11 +9,29 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- models:/root/.ollama
|
- models:/root/.ollama
|
||||||
environment:
|
environment:
|
||||||
- HSA_OVERRIDE_GFX_VERSION=11.0.0
|
- HSA_OVERRIDE_GFX_VERSION=10.3.0
|
||||||
ports:
|
ports:
|
||||||
- "11434:11434"
|
- "11434:11434"
|
||||||
dns:
|
dns:
|
||||||
- "8.8.8.8"
|
- "8.8.8.8"
|
||||||
|
openwebui:
|
||||||
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
|
ports:
|
||||||
|
- "3004:8080"
|
||||||
|
volumes:
|
||||||
|
- open-webui:/app/backend/data
|
||||||
|
environment:
|
||||||
|
- OAUTH_CLIENT_ID=00064iMSupbqgHwpL7f0k27BpKZ6JUDcdKOYFtRM
|
||||||
|
- OAUTH_CLIENT_SECRET=A8Hlk2kKjfU1WTIOxKejOrPxpji9hmg5kVEMXF03Z4ptokEkBComXrBfxkQbDUHMzbp1W5y3uulIxZ2K1VlRcQC7x28yMnYryHmUatcACFHNAKKJuN6HHnZXQSZsi0se
|
||||||
|
- OAUTH_PROVIDER_NAME=authentik
|
||||||
|
- OPENID_PROVIDER_URL=https://auth.sectorq.eu/application/o/openwebui/.well-known/openid-configuration
|
||||||
|
- OPENID_REDIRECT_URI=https://openwebui.sectorq.eu/oauth/oidc/callback
|
||||||
|
- WEBUI_URL=https://openwebui.sectorq.eu
|
||||||
|
# Allows auto-creation of new users using OAuth. Must be paired with ENABLE_LOGIN_FORM=false.
|
||||||
|
- ENABLE_OAUTH_SIGNUP=true
|
||||||
|
# Disables user/password login form. Required when ENABLE_OAUTH_SIGNUP=true.
|
||||||
|
- ENABLE_LOGIN_FORM=false
|
||||||
|
- OAUTH_MERGE_ACCOUNTS_BY_EMAIL=true
|
||||||
volumes:
|
volumes:
|
||||||
|
open-webui:
|
||||||
models:
|
models:
|
||||||
10
searxng/docker-compose.yml
Normal file
10
searxng/docker-compose.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: searxng/searxng:latest
|
||||||
|
ports:
|
||||||
|
- "8688:8080"
|
||||||
|
volumes:
|
||||||
|
- searxng:/etc/searxng:rw
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
searxng:
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
# VERSION=4.12.0
|
|
||||||
# DOCKER_REGISTRY=r.sectorq.eu/library/
|
|
||||||
@@ -1,71 +1,21 @@
|
|||||||
|
# Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2)
|
||||||
services:
|
services:
|
||||||
wazuh-dashboard:
|
wazuh.manager:
|
||||||
depends_on:
|
image: wazuh/wazuh-manager:4.14.0
|
||||||
- wazuh-indexer
|
hostname: wazuh.manager
|
||||||
dns:
|
|
||||||
- 192.168.77.101
|
|
||||||
environment:
|
|
||||||
- INDEXER_USERNAME=admin
|
|
||||||
- INDEXER_PASSWORD=SecretPassword
|
|
||||||
- WAZUH_API_URL=https://wazuh.manager
|
|
||||||
- DASHBOARD_USERNAME=kibanaserver
|
|
||||||
- DASHBOARD_PASSWORD=kibanaserver
|
|
||||||
- API_USERNAME=wazuh-wui
|
|
||||||
- API_PASSWORD=MyS3cr37P450r.*-
|
|
||||||
hostname: wazuh.dashboard
|
|
||||||
image: ${DOCKER_REGISTRY:-}wazuh/wazuh-dashboard:${VERSION:-4.12.0}
|
|
||||||
labels:
|
|
||||||
wud.watch: 'true'
|
|
||||||
wud.watch.digest: 'true'
|
|
||||||
links:
|
|
||||||
- wazuh-indexer:wazuh-indexer
|
|
||||||
- wazuh-manager:wazuh-manager
|
|
||||||
ports:
|
|
||||||
- 5601:5601
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.dashboard.pem:/usr/share/wazuh-dashboard/certs/wazuh-dashboard.pem
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.dashboard-key.pem:/usr/share/wazuh-dashboard/certs/wazuh-dashboard-key.pem
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/root-ca.pem:/usr/share/wazuh-dashboard/certs/root-ca.pem
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_dashboard/opensearch_dashboards.yml:/usr/share/wazuh-dashboard/config/opensearch_dashboards.yml
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_dashboard/wazuh.yml:/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml
|
|
||||||
- wazuh-dashboard-config:/usr/share/wazuh-dashboard/data/wazuh/config
|
|
||||||
- wazuh-dashboard-custom:/usr/share/wazuh-dashboard/plugins/wazuh/public/assets/custom
|
|
||||||
wazuh-indexer:
|
|
||||||
dns:
|
|
||||||
- 192.168.77.101
|
|
||||||
environment:
|
|
||||||
- OPENSEARCH_JAVA_OPTS=-Xms1g -Xmx1g
|
|
||||||
hostname: wazuh.indexer
|
|
||||||
image: ${DOCKER_REGISTRY:-}wazuh/wazuh-indexer:${VERSION:-4.12.0}
|
|
||||||
labels:
|
|
||||||
wud.watch: 'true'
|
|
||||||
wud.watch.digest: 'true'
|
|
||||||
ports:
|
|
||||||
- 9200:9200
|
|
||||||
restart: always
|
restart: always
|
||||||
ulimits:
|
ulimits:
|
||||||
memlock:
|
memlock:
|
||||||
hard: -1
|
|
||||||
soft: -1
|
soft: -1
|
||||||
|
hard: -1
|
||||||
nofile:
|
nofile:
|
||||||
hard: 65536
|
soft: 655360
|
||||||
soft: 65536
|
hard: 655360
|
||||||
volumes:
|
ports:
|
||||||
- wazuh-indexer-data:/var/lib/wazuh-indexer
|
- "1514:1514"
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/root-ca.pem:/usr/share/wazuh-indexer/certs/root-ca.pem
|
- "1515:1515"
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.indexer-key.pem:/usr/share/wazuh-indexer/certs/wazuh.indexer.key
|
- "514:514/udp"
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.indexer.pem:/usr/share/wazuh-indexer/certs/wazuh.indexer.pem
|
- "55000:55000"
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/admin.pem:/usr/share/wazuh-indexer/certs/admin.pem
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/admin-key.pem:/usr/share/wazuh-indexer/certs/admin-key.pem
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer/wazuh.indexer.yml:/usr/share/wazuh-indexer/opensearch.yml
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/opensearch-security/internal_users.yml
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer/roles_mapping.yml:/usr/share/wazuh-indexer/opensearch-security/roles_mapping.yml
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer/config.yml:/usr/share/wazuh-indexer/opensearch-security/config.yml
|
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer/idp-metadata.xml:/usr/share/wazuh-indexer/opensearch-security/idp-metadata.xml
|
|
||||||
wazuh-manager:
|
|
||||||
dns:
|
|
||||||
- 192.168.77.101
|
|
||||||
environment:
|
environment:
|
||||||
- INDEXER_URL=https://wazuh.indexer:9200
|
- INDEXER_URL=https://wazuh.indexer:9200
|
||||||
- INDEXER_USERNAME=admin
|
- INDEXER_USERNAME=admin
|
||||||
@@ -76,33 +26,6 @@ services:
|
|||||||
- SSL_KEY=/etc/ssl/filebeat.key
|
- SSL_KEY=/etc/ssl/filebeat.key
|
||||||
- API_USERNAME=wazuh-wui
|
- API_USERNAME=wazuh-wui
|
||||||
- API_PASSWORD=MyS3cr37P450r.*-
|
- API_PASSWORD=MyS3cr37P450r.*-
|
||||||
hostname: wazuh-manager
|
|
||||||
image: ${DOCKER_REGISTRY:-}wazuh/wazuh-manager:${VERSION:-4.12.0}
|
|
||||||
labels:
|
|
||||||
com.centurylinklabs.watchtower.enable: 'true'
|
|
||||||
homepage.container: wazuh-wazuh.manager-1
|
|
||||||
homepage.description: Security monitoring
|
|
||||||
homepage.group: Utilities
|
|
||||||
homepage.href: https://wazuh.sectorq.eu
|
|
||||||
homepage.icon: wazuh.png
|
|
||||||
homepage.name: Wazuh
|
|
||||||
homepage.server: my-docker
|
|
||||||
homepage.weight: '1'
|
|
||||||
wud.watch: 'true'
|
|
||||||
wud.watch.digest: 'true'
|
|
||||||
ports:
|
|
||||||
- 1514:1514
|
|
||||||
- 1515:1515
|
|
||||||
- 514:514/udp
|
|
||||||
- 55000:55000
|
|
||||||
restart: always
|
|
||||||
ulimits:
|
|
||||||
memlock:
|
|
||||||
hard: -1
|
|
||||||
soft: -1
|
|
||||||
nofile:
|
|
||||||
hard: 655360
|
|
||||||
soft: 655360
|
|
||||||
volumes:
|
volumes:
|
||||||
- wazuh_api_configuration:/var/ossec/api/configuration
|
- wazuh_api_configuration:/var/ossec/api/configuration
|
||||||
- wazuh_etc:/var/ossec/etc
|
- wazuh_etc:/var/ossec/etc
|
||||||
@@ -119,18 +42,73 @@ services:
|
|||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager.pem:/etc/ssl/filebeat.pem
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager.pem:/etc/ssl/filebeat.pem
|
||||||
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager-key.pem:/etc/ssl/filebeat.key
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.manager-key.pem:/etc/ssl/filebeat.key
|
||||||
- /share/docker_data/wazuh/config/wazuh_cluster/wazuh_manager.conf:/wazuh-config-mount/etc/ossec.conf
|
- /share/docker_data/wazuh/config/wazuh_cluster/wazuh_manager.conf:/wazuh-config-mount/etc/ossec.conf
|
||||||
|
|
||||||
|
wazuh.indexer:
|
||||||
|
image: wazuh/wazuh-indexer:4.14.0
|
||||||
|
hostname: wazuh.indexer
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9200:9200"
|
||||||
|
environment:
|
||||||
|
- "OPENSEARCH_JAVA_OPTS=-Xms1g -Xmx1g"
|
||||||
|
ulimits:
|
||||||
|
memlock:
|
||||||
|
soft: -1
|
||||||
|
hard: -1
|
||||||
|
nofile:
|
||||||
|
soft: 65536
|
||||||
|
hard: 65536
|
||||||
|
volumes:
|
||||||
|
- wazuh-indexer-data:/var/lib/wazuh-indexer
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/root-ca.pem:/usr/share/wazuh-indexer/config/certs/root-ca.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.indexer-key.pem:/usr/share/wazuh-indexer/config/certs/wazuh.indexer.key
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.indexer.pem:/usr/share/wazuh-indexer/config/certs/wazuh.indexer.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/admin.pem:/usr/share/wazuh-indexer/config/certs/admin.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/admin-key.pem:/usr/share/wazuh-indexer/config/certs/admin-key.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer/wazuh.indexer.yml:/usr/share/wazuh-indexer/config/opensearch.yml
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer/wazuh_authentik_meta.xml:/etc/wazuh-indexer/opensearch-security/wazuh_authentik_meta.xml
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer/config.yml:/usr/share/wazuh-indexer/config/opensearch-security/config.yml
|
||||||
|
|
||||||
|
wazuh.dashboard:
|
||||||
|
image: wazuh/wazuh-dashboard:4.14.0
|
||||||
|
hostname: wazuh.dashboard
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 5601:5601
|
||||||
|
environment:
|
||||||
|
- INDEXER_USERNAME=admin
|
||||||
|
- INDEXER_PASSWORD=SecretPassword
|
||||||
|
- WAZUH_API_URL=https://wazuh.manager
|
||||||
|
- DASHBOARD_USERNAME=kibanaserver
|
||||||
|
- DASHBOARD_PASSWORD=kibanaserver
|
||||||
|
- API_USERNAME=wazuh-wui
|
||||||
|
- API_PASSWORD=MyS3cr37P450r.*-
|
||||||
|
volumes:
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.dashboard.pem:/usr/share/wazuh-dashboard/certs/wazuh-dashboard.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/wazuh.dashboard-key.pem:/usr/share/wazuh-dashboard/certs/wazuh-dashboard-key.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_indexer_ssl_certs/root-ca.pem:/usr/share/wazuh-dashboard/certs/root-ca.pem
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_dashboard/opensearch_dashboards.yml:/usr/share/wazuh-dashboard/config/opensearch_dashboards.yml
|
||||||
|
- /share/docker_data/wazuh/config/wazuh_dashboard/wazuh.yml:/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml
|
||||||
|
- wazuh-dashboard-config:/usr/share/wazuh-dashboard/data/wazuh/config
|
||||||
|
- wazuh-dashboard-custom:/usr/share/wazuh-dashboard/plugins/wazuh/public/assets/custom
|
||||||
|
depends_on:
|
||||||
|
- wazuh.indexer
|
||||||
|
links:
|
||||||
|
- wazuh.indexer:wazuh.indexer
|
||||||
|
- wazuh.manager:wazuh.manager
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
filebeat_etc: null
|
wazuh_api_configuration:
|
||||||
filebeat_var: null
|
wazuh_etc:
|
||||||
wazuh-dashboard-config: null
|
wazuh_logs:
|
||||||
wazuh-dashboard-custom: null
|
wazuh_queue:
|
||||||
wazuh-indexer-data: null
|
wazuh_var_multigroups:
|
||||||
wazuh_active_response: null
|
wazuh_integrations:
|
||||||
wazuh_agentless: null
|
wazuh_active_response:
|
||||||
wazuh_api_configuration: null
|
wazuh_agentless:
|
||||||
wazuh_etc: null
|
wazuh_wodles:
|
||||||
wazuh_integrations: null
|
filebeat_etc:
|
||||||
wazuh_logs: null
|
filebeat_var:
|
||||||
wazuh_queue: null
|
wazuh-indexer-data:
|
||||||
wazuh_var_multigroups: null
|
wazuh-dashboard-config:
|
||||||
wazuh_wodles: null
|
wazuh-dashboard-custom:
|
||||||
|
|||||||
Reference in New Issue
Block a user