mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2026-05-04 17:29:50 +02:00
Compare commits
14 Commits
23e343f8cc
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e02b093e5 | |||
| d58e0252b0 | |||
| 59b29b237b | |||
| 4b4aa165ab | |||
| 619da14708 | |||
| 5db50c4471 | |||
| 38796fd160 | |||
| 5f376927e9 | |||
| e8be1b5329 | |||
| 3c7126c903 | |||
| fd7efc3c5f | |||
| 3f219b58b1 | |||
| 3b3135de3b | |||
| 82d2a80797 |
@@ -5,7 +5,7 @@ services:
|
|||||||
- 192.168.77.101
|
- 192.168.77.101
|
||||||
- 192.168.77.238
|
- 192.168.77.238
|
||||||
environment:
|
environment:
|
||||||
HOMEPAGE_ALLOWED_HOSTS: sectorq.eu,active.home.lan:3003,m-server.home.lan:3003,rpi5.home.lan:3003,nas.home.lan:3003,192.168.77.238:3003,rack.home.lan:3003,192.168.80.222:3003,192.168.77.101:9343
|
HOMEPAGE_ALLOWED_HOSTS: "*"
|
||||||
TZ: Europe/Bratislava
|
TZ: Europe/Bratislava
|
||||||
image: ${DOCKER_REGISTRY:-}ghcr.io/gethomepage/homepage:latest
|
image: ${DOCKER_REGISTRY:-}ghcr.io/gethomepage/homepage:latest
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ networks:
|
|||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
dns:
|
dns:
|
||||||
- 192.168.78.254
|
- 192.168.77.1
|
||||||
healthcheck:
|
healthcheck:
|
||||||
interval: 10s
|
interval: 10s
|
||||||
test:
|
test:
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
NEXTAUTH_URL=https://linkwarden.sectorq.eu/api/v1/auth
|
NEXTAUTH_URL=https://linkwarden.sectorq.eu/api/v1/auth
|
||||||
NEXTAUTH_SECRET=l4c1j4yd33Du5lo
|
NEXTAUTH_SECRET=l4c1j4yd33Du5lo
|
||||||
|
DOCKER_REGISTRY=r.sectorq.eu/library/
|
||||||
# Manual installation database settings
|
# Manual installation database settings
|
||||||
# Example: DATABASE_URL=postgresql://user:password@localhost:5432/linkwarden
|
# Example: DATABASE_URL=postgresql://user:password@localhost:5432/linkwarden
|
||||||
DATABASE_URL=
|
DATABASE_URL=
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:16-alpine
|
image: ${DOCKER_REGISTRY:-}postgres:16-alpine
|
||||||
env_file: .env
|
env_file: .env
|
||||||
|
|
||||||
restart: always
|
restart: always
|
||||||
@@ -12,7 +12,7 @@ services:
|
|||||||
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
||||||
restart: always
|
restart: always
|
||||||
# build: . # uncomment to build from source
|
# 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:
|
ports:
|
||||||
- 3011:3000
|
- 3011:3000
|
||||||
volumes:
|
volumes:
|
||||||
@@ -36,7 +36,7 @@ services:
|
|||||||
wud.watch: true
|
wud.watch: true
|
||||||
wud.watch.digest: true
|
wud.watch.digest: true
|
||||||
meilisearch:
|
meilisearch:
|
||||||
image: getmeili/meilisearch:v1.12.8
|
image: ${DOCKER_REGISTRY:-}getmeili/meilisearch:v1.12.8
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
|||||||
+3
-3
@@ -141,10 +141,10 @@ COMPOSE_PROJECT_NAME=mailu
|
|||||||
CREDENTIAL_ROUNDS=12
|
CREDENTIAL_ROUNDS=12
|
||||||
|
|
||||||
# Header to take the real ip from
|
# 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)
|
# 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)
|
# choose wether mailu bounces (no) or rejects (yes) mail when recipient is unknown (value: yes, no)
|
||||||
REJECT_UNLISTED_RECIPIENT=
|
REJECT_UNLISTED_RECIPIENT=
|
||||||
|
|||||||
@@ -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:
|
||||||
@@ -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:
|
||||||
Executable
+24
@@ -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/
|
||||||
Reference in New Issue
Block a user