Compare commits

...

11 Commits

Author SHA1 Message Date
jaydee 6e02b093e5 build 2026-03-28 16:08:28 +01:00
jaydee d58e0252b0 build 2026-03-24 13:08:44 +01:00
jaydee 59b29b237b build 2026-03-24 13:06:15 +01:00
jaydee 4b4aa165ab build 2026-03-24 12:07:45 +01:00
jaydee 619da14708 build 2026-03-23 17:36:21 +01:00
jaydee 5db50c4471 build 2026-03-23 17:27:58 +01:00
jaydee 38796fd160 build 2026-03-23 17:26:27 +01:00
jaydee 5f376927e9 build 2026-03-23 17:09:22 +01:00
jaydee e8be1b5329 build 2026-03-23 16:51:03 +01:00
jaydee 3c7126c903 build 2026-03-22 00:36:14 +01:00
jaydee fd7efc3c5f build 2026-03-22 00:22:23 +01:00
8 changed files with 75 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
NEXTAUTH_URL=https://linkwarden.sectorq.eu/api/v1/auth
NEXTAUTH_SECRET=l4c1j4yd33Du5lo
DOCKER_REGISTRY=r.sectorq.eu/library/
# Manual installation database settings
# Example: DATABASE_URL=postgresql://user:password@localhost:5432/linkwarden
DATABASE_URL=
+3 -3
View File
@@ -1,6 +1,6 @@
services:
postgres:
image: postgres:16-alpine
image: ${DOCKER_REGISTRY:-}postgres:16-alpine
env_file: .env
restart: always
@@ -12,7 +12,7 @@ services:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
# build: . # uncomment to build from source
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
image: ${DOCKER_REGISTRY:-}ghcr.io/linkwarden/linkwarden:latest # comment to build from source
ports:
- 3011:3000
volumes:
@@ -36,7 +36,7 @@ services:
wud.watch: true
wud.watch.digest: true
meilisearch:
image: getmeili/meilisearch:v1.12.8
image: ${DOCKER_REGISTRY:-}getmeili/meilisearch:v1.12.8
restart: always
env_file:
- .env
+3 -3
View File
@@ -141,10 +141,10 @@ COMPOSE_PROJECT_NAME=mailu
CREDENTIAL_ROUNDS=12
# Header to take the real ip from
REAL_IP_HEADER=X-Real-IP
# REAL_IP_HEADER=X-Real-IP
REAL_IP_HEADER=X-Forwarded-For
# IPs for nginx set_real_ip_from (CIDR list separated by commas)
REAL_IP_FROM=192.168.77.101
REAL_IP_FROM=172.0.0.0/8
# choose wether mailu bounces (no) or rejects (yes) mail when recipient is unknown (value: yes, no)
REJECT_UNLISTED_RECIPIENT=
+31
View File
@@ -0,0 +1,31 @@
version: "3.8"
services:
puppetserver:
image: puppet/puppetserver:latest
container_name: puppetserver
hostname: active.home.lan
ports:
- "8140:8140"
environment:
- PUPPETSERVER_HOSTNAME=active.home.lan
volumes:
# Main Puppet config
- puppet-puppet:/etc/puppetlabs/puppet
- puppet-server:/etc/puppetlabs/puppetserver
# Puppet code (manifests, modules)
- puppet-code:/etc/puppetlabs/code
networks:
puppetnet:
aliases:
- puppet
- puppetserver
- active.home.lan
networks:
puppetnet:
volumes:
puppet-code:
puppet-server:
puppet-puppet:
+13
View File
@@ -0,0 +1,13 @@
---
services:
puppet-agent:
image: puppet/puppet-agent:latest
container_name: puppet-agent
hostname: nas.home.lan
environment:
- PUPPET_SERVER=active.home.lan
volumes:
- data:/etc/puppetlabs/puppet
command: ["agent", "-t"]
volumes:
data:
+24
View File
@@ -0,0 +1,24 @@
name: registry
services:
registry:
container_name: registry
environment:
- REGISTRY_STORAGE_DELETE_ENABLED=true
- REGISTRY_AUTH=htpasswd
- REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm
- REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd
image: registry:2
labels:
wud.watch: false
wud.watch.digest: false
logging:
driver: loki
options:
loki-url: http://192.168.77.101:3100/loki/api/v1/push
ports:
- 5000:5000
restart: always
volumes:
- /share/docker_data/registry/auth:/auth
- /share/docker_registry/data:/var/lib/registry
- /share/docker_data/registry/config:/etc/docker/registry/