3 Commits
Author SHA1 Message Date
Olli Graf d1c033ed93 Logfile Konfiguration 2026-09-18 10:43:01 +02:00
olli 5af3f050dd docker-compose.yml für Technitium 2026-06-22 08:36:38 +02:00
Olli Graf d5a273fe28 Aktualisierte gitea Daten. 2026-01-19 09:26:32 +01:00
6 changed files with 73 additions and 5 deletions
+3 -4
View File
@@ -1,12 +1,11 @@
version: "3" version: "3"
services: services:
pihole: gitea:
container_name: gitea container_name: gitea
image: kunde21/gitea-arm:latest image: gitea/gitea:latest
ports: ports:
- "3000:3000/tcp" - '3001:3000/tcp'
- "23:22/tcp"
# Volumes store your data between container upgrades # Volumes store your data between container upgrades
volumes: volumes:
- '/opt/gitea:/data' - '/opt/gitea:/data'
+8
View File
@@ -0,0 +1,8 @@
#! /usr/bin/bash
echo "pulling image ${1}"
docker pull ${1}
echo "removing container ${2}"
docker rm -f ${2}
+6
View File
@@ -0,0 +1,6 @@
#! /usr/bin/bash
export COMPOSE_IGNORE_ORPHANS=True
./update-container gitea/gitea:latest gitea
echo "creating new container"
docker-compose -f ./docker-compose.yml up -d
+1 -1
View File
@@ -1,4 +1,4 @@
# $HOME/docker/compose-files/grafana/.env # $HOME/docker/nextcloud/.env
MSQL_PASSWORD=<passwort> MSQL_PASSWORD=<passwort>
MYSQL_DATABASE=nextcloud MYSQL_DATABASE=nextcloud
MYSQL_USER=nextcloud MYSQL_USER=nextcloud
+18
View File
@@ -4,6 +4,12 @@ services:
nextcloud: nextcloud:
image: nextcloud:latest image: nextcloud:latest
container_name: nextcloud container_name: nextcloud
logging:
driver: "local"
options:
max-size: "10m"
max-file: "3"
restart: always restart: always
ports: ports:
- "9000:80" - "9000:80"
@@ -23,6 +29,12 @@ services:
nextcloud-cron: nextcloud-cron:
image: nextcloud:latest image: nextcloud:latest
container_name: nextcloud-cron container_name: nextcloud-cron
logging:
driver: "local"
options:
max-size: "10m"
max-file: "3"
restart: always restart: always
entrypoint: /cron.sh entrypoint: /cron.sh
command: command:
@@ -43,6 +55,12 @@ services:
clamav: clamav:
image: clamav/clamav-debian image: clamav/clamav-debian
container_name: clamav container_name: clamav
logging:
driver: "local"
options:
max-size: "10m"
max-file: "3"
restart: unless-stopped restart: unless-stopped
ports: ports:
- "3310:3310" - "3310:3310"
+37
View File
@@ -0,0 +1,37 @@
services:
dns-server:
container_name: dns-server
hostname: dns-server
image: technitium/dns-server:latest
ports:
- "5380:5380/tcp" # Web console (HTTP)
- "53:53/udp" # DNS service
- "53:53/tcp" # DNS service
- "53443:53443/tcp" # Web console (HTTPS)
#optionale Ports, Kommentar entfernen, falls notwendig.
# - "853:853/udp" # DNS-over-QUIC
# - "853:853/tcp" # DNS-over-TLS
# - "443:443/udp" # DNS-over-HTTPS (HTTP/3)
# - "443:443/tcp" # DNS-over-HTTPS (HTTP/1.1, HTTP/2)
# - "67:67/udp" # DHCP service
environment:
- DNS_SERVER_DOMAIN=dns-server
- DNS_SERVER_ADMIN_PASSWORD=<admin_passwort>
- DNS_SERVER_PREFER_IPV6=false
- DNS_SERVER_RECURSION=AllowOnlyForPrivateNetworks
- DNS_SERVER_FORWARDERS=192.168.178.1
volumes:
- /opt/technitium:/etc/dns
restart: unless-stopped
sysctls:
- net.ipv4.ip_local_port_range=1024 65000
volumes:
config: