Compare commits

..

24 Commits

Author SHA1 Message Date
f615d6b147 build 2025-11-19 00:54:25 +01:00
25148d8769 build 2025-11-19 00:37:58 +01:00
e929defb34 build 2025-11-19 00:09:22 +01:00
376b66d9a6 build 2025-11-19 00:08:26 +01:00
18a5022df8 build 2025-11-19 00:00:01 +01:00
e4a1ba7073 build 2025-11-18 23:56:14 +01:00
d98370e9b8 build 2025-11-18 23:55:20 +01:00
cd94c86daf build 2025-11-18 23:51:22 +01:00
991ef075a2 build 2025-11-18 23:46:32 +01:00
d0d7b14d16 build 2025-11-18 23:40:14 +01:00
3fce655511 build 2025-11-18 23:35:19 +01:00
15c7cdb3aa build 2025-11-18 23:31:51 +01:00
8d7101366b build 2025-11-18 23:26:11 +01:00
cf68eb4c75 build 2025-11-18 23:00:17 +01:00
80e633cecd build 2025-11-18 22:58:25 +01:00
3c83de6a35 build 2025-11-18 22:46:32 +01:00
46401dd288 build 2025-11-18 22:43:15 +01:00
873ea0efb4 build 2025-11-18 22:34:01 +01:00
4d0d9c93ca alias 2025-11-18 20:54:46 +01:00
8db02b515e alias 2025-11-18 20:44:48 +01:00
f8bb4bbd34 alias 2025-11-18 20:43:35 +01:00
c28e3651b1 alias 2025-11-18 20:43:21 +01:00
c94109a95e alias 2025-11-18 18:38:42 +01:00
74121897a5 alias 2025-11-18 17:57:06 +01:00
11 changed files with 75 additions and 12 deletions

3
influxdb/.env Executable file
View File

@@ -0,0 +1,3 @@
APPNAME=influxdb
DOCKER_REGISTRY=r.sectorq.eu/library/
RESTART=always

View File

@@ -0,0 +1 @@
ha

View File

@@ -0,0 +1 @@
l4c1j4yd33Du5lo

View File

@@ -0,0 +1 @@
ha

37
influxdb/docker-compose.yml Executable file
View File

@@ -0,0 +1,37 @@
version: '3'
services:
influxdb:
ports:
- 8087:8086
volumes:
- /share/docker_data/influxdb2/data:/var/lib/influxdb2
- /share/docker_data/influxdb2/config:/etc/influxdb2
secrets:
- influxdb2-admin-username
- influxdb2-admin-password
- influxdb2-admin-token
environment:
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=ha
- DOCKER_INFLUXDB_INIT_PASSWORD=haHAhaHA
- DOCKER_INFLUXDB_INIT_ORG=ha
- DOCKER_INFLUXDB_INIT_BUCKET=ha
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN_FILE=/run/secrets/influxdb2-admin-token
image: ${DOCKER_REGISTRY:-}influxdb:2
restart: ${RESTART:-unless-stopped}
healthcheck:
test: "echo test > /var/lib/influxdb2/hc || exit 1"
interval: 10s
timeout: 3s
retries: 2
labels:
com.centurylinklabs.watchtower.enable: true
wud.watch: true
wud.watch.digest: true
secrets:
influxdb2-admin-username:
file: .env.influxdb2-admin-username
influxdb2-admin-password:
file: .env.influxdb2-admin-password
influxdb2-admin-token:
file: .env.influxdb2-admin-token

View File

@@ -1 +1,2 @@
APPNAME=nebula
PASSWORD=l4c1j4yd33Du5lo

17
nebula/docker-compose copy.yml Executable file
View File

@@ -0,0 +1,17 @@
services:
nebula-sync:
image: ghcr.io/lovelaze/nebula-sync:latest
container_name: nebula-sync
environment:
- PRIMARY=http://192.168.77.101:9380|l4c1j4yd33Du5lo
- REPLICAS=http://192.168.77.238:9380|l4c1j4yd33Du5lo,http://192.168.77.106:9380|l4c1j4yd33Du5lo
- CLIENT_SKIP_TLS_VERIFICATION=true
- FULL_SYNC=true
- RUN_GRAVITY=true
- CRON=0 * * * *
labels:
wud.watch: true
wud.watch.digest: true
restart: always

View File

@@ -1,7 +1,6 @@
services:
nebula-sync:
image: ghcr.io/lovelaze/nebula-sync:latest
container_name: nebula-sync
environment:
- PRIMARY=http://192.168.77.101:9380|l4c1j4yd33Du5lo
- REPLICAS=http://192.168.77.238:9380|l4c1j4yd33Du5lo,http://192.168.77.106:9380|l4c1j4yd33Du5lo
@@ -10,8 +9,3 @@ services:
- FULL_SYNC=true
- RUN_GRAVITY=true
- CRON=0 * * * *
labels:
wud.watch: true
wud.watch.digest: true
restart: always

3
onlyoffice/.env Executable file
View File

@@ -0,0 +1,3 @@
APPNAME=onlyoffice
RESTART=always
DOCKER_REGISTRY=r.sectorq.eu/library/

View File

@@ -49,5 +49,5 @@ services:
homepage.icon: ${APPNAME}.png
homepage.name: Paperless
homepage.server: my-docker
wud.watch: true
wud.watch.digest: true
wud.watch: "true"
wud.watch.digest: "true"

View File

@@ -1,23 +1,25 @@
services:
db:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mariadb:10.6.4-focal
image: ${DOCKER_REGISTRY:-}mariadb:10.6.4-focal
# If you really want to use MySQL, uncomment the following line
#image: mysql:8.0.27
command: '--default-authentication-plugin=mysql_native_password'
volumes:
- db_data:/var/lib/mysql
restart: always
secrets:
- mysql_password
environment:
- MYSQL_ROOT_PASSWORD=somewordpress
- MYSQL_DATABASE=wordpress
- MYSQL_USER=wordpress
- MYSQL_PASSWORD=wordpress
- MYSQL_PASSWORD=/run/secrets/mysql_password
expose:
- 3306
- 33060
wordpress:
image: wordpress:latest
image: ${DOCKER_REGISTRY:-}wordpress:latest
volumes:
- wp_data:/var/www/html
ports:
@@ -31,3 +33,6 @@ services:
volumes:
db_data:
wp_data:
secrets:
mysql_password:
external: true