wiki
This commit is contained in:
parent
0230e1c2ba
commit
061ab0c2c0
38 changed files with 103 additions and 0 deletions
0
archive/Caddyfile.old
Executable file → Normal file
0
archive/Caddyfile.old
Executable file → Normal file
0
archive/WatchState.yaml
Executable file → Normal file
0
archive/WatchState.yaml
Executable file → Normal file
0
archive/arr.yaml
Executable file → Normal file
0
archive/arr.yaml
Executable file → Normal file
0
archive/nxterm.yaml
Executable file → Normal file
0
archive/nxterm.yaml
Executable file → Normal file
0
archive/plex.yaml
Executable file → Normal file
0
archive/plex.yaml
Executable file → Normal file
0
archive/sshwifty.yaml
Executable file → Normal file
0
archive/sshwifty.yaml
Executable file → Normal file
0
compose/docker2/Compose-vpn.yaml
Executable file → Normal file
0
compose/docker2/Compose-vpn.yaml
Executable file → Normal file
0
compose/docker4/.env
Executable file → Normal file
0
compose/docker4/.env
Executable file → Normal file
0
compose/docker4/graylog.yaml
Executable file → Normal file
0
compose/docker4/graylog.yaml
Executable file → Normal file
0
compose/docker5/JellyFin.yaml
Executable file → Normal file
0
compose/docker5/JellyFin.yaml
Executable file → Normal file
0
compose/nas/.env
Executable file → Normal file
0
compose/nas/.env
Executable file → Normal file
0
swarm/JellySeer.yaml
Executable file → Normal file
0
swarm/JellySeer.yaml
Executable file → Normal file
0
swarm/JellyStat.yaml
Executable file → Normal file
0
swarm/JellyStat.yaml
Executable file → Normal file
0
swarm/SQL-mgmt.yaml
Executable file → Normal file
0
swarm/SQL-mgmt.yaml
Executable file → Normal file
0
swarm/authentik.yaml
Executable file → Normal file
0
swarm/authentik.yaml
Executable file → Normal file
0
swarm/cloudcmd.yaml
Executable file → Normal file
0
swarm/cloudcmd.yaml
Executable file → Normal file
0
swarm/dozzle.yaml
Executable file → Normal file
0
swarm/dozzle.yaml
Executable file → Normal file
0
swarm/forgejo.yaml
Executable file → Normal file
0
swarm/forgejo.yaml
Executable file → Normal file
0
swarm/homepage.yaml
Executable file → Normal file
0
swarm/homepage.yaml
Executable file → Normal file
0
swarm/hydra.yaml
Executable file → Normal file
0
swarm/hydra.yaml
Executable file → Normal file
0
swarm/kavita.yaml
Executable file → Normal file
0
swarm/kavita.yaml
Executable file → Normal file
0
swarm/kuma.yaml
Executable file → Normal file
0
swarm/kuma.yaml
Executable file → Normal file
0
swarm/library.yaml
Executable file → Normal file
0
swarm/library.yaml
Executable file → Normal file
0
swarm/mealie.yaml
Executable file → Normal file
0
swarm/mealie.yaml
Executable file → Normal file
0
swarm/nzbget.yaml
Executable file → Normal file
0
swarm/nzbget.yaml
Executable file → Normal file
0
swarm/phpipam.yaml
Executable file → Normal file
0
swarm/phpipam.yaml
Executable file → Normal file
0
swarm/portainer-agent-stack.yml
Executable file → Normal file
0
swarm/portainer-agent-stack.yml
Executable file → Normal file
0
swarm/roundcube.yaml
Executable file → Normal file
0
swarm/roundcube.yaml
Executable file → Normal file
0
swarm/sabnzbd.yaml
Executable file → Normal file
0
swarm/sabnzbd.yaml
Executable file → Normal file
0
swarm/stack/caddy/Caddyfile
Executable file → Normal file
0
swarm/stack/caddy/Caddyfile
Executable file → Normal file
0
swarm/stack/caddy/caddy.sh
Executable file → Normal file
0
swarm/stack/caddy/caddy.sh
Executable file → Normal file
0
swarm/stack/caddy/caddy.yaml
Executable file → Normal file
0
swarm/stack/caddy/caddy.yaml
Executable file → Normal file
0
swarm/tmm.yaml
Executable file → Normal file
0
swarm/tmm.yaml
Executable file → Normal file
0
swarm/vscode.yaml
Executable file → Normal file
0
swarm/vscode.yaml
Executable file → Normal file
0
swarm/wallo.yaml
Executable file → Normal file
0
swarm/wallo.yaml
Executable file → Normal file
0
swarm/webtop.yaml
Executable file → Normal file
0
swarm/webtop.yaml
Executable file → Normal file
0
swarm/whisparr.yaml
Executable file → Normal file
0
swarm/whisparr.yaml
Executable file → Normal file
103
swarm/wiki.yaml
Normal file
103
swarm/wiki.yaml
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
version: "3.8"
|
||||
|
||||
networks:
|
||||
netgrimoire:
|
||||
external: true
|
||||
|
||||
services:
|
||||
wikijs-db:
|
||||
image: postgres:16-alpine
|
||||
networks:
|
||||
- netgrimoire
|
||||
environment:
|
||||
TZ: America/Chicago
|
||||
POSTGRES_DB: wiki
|
||||
POSTGRES_USER: wikijs
|
||||
POSTGRES_PASSWORD: F@lcon13
|
||||
volumes:
|
||||
- /DockerVol/wikijs-db:/var/lib/postgresql/data
|
||||
deploy:
|
||||
mode: replicated
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == dockerpi
|
||||
- node.labels.cpu == arm
|
||||
restart_policy:
|
||||
condition: any
|
||||
delay: 5s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
labels:
|
||||
diun.enable: "true"
|
||||
|
||||
wikijs:
|
||||
image: requarks/wiki:2
|
||||
networks:
|
||||
- netgrimoire
|
||||
# Run as your default container identity
|
||||
user: "1964:1964"
|
||||
environment:
|
||||
TZ: America/Chicago
|
||||
DB_TYPE: postgres
|
||||
DB_HOST: wikijs-db
|
||||
DB_PORT: "5432"
|
||||
DB_USER: wikijs
|
||||
DB_PASS: F@lcon13
|
||||
DB_NAME: wiki
|
||||
volumes:
|
||||
- /DockerVol/wikijs/data:/wiki/data
|
||||
- /DockerVol/wikijs/repo:/wiki/repo
|
||||
- /DockerVol/wikijs/ssh:/wiki/ssh:ro
|
||||
deploy:
|
||||
mode: replicated
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == dockerpi
|
||||
- node.labels.cpu == arm
|
||||
restart_policy:
|
||||
condition: any
|
||||
delay: 5s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
labels:
|
||||
diun.enable: "true"
|
||||
|
||||
# Caddy (adjust hostnames to your domain)
|
||||
caddy: wiki.netgrimoire.com
|
||||
caddy.reverse_proxy: "{{upstreams 3000}}"
|
||||
|
||||
# Kuma labels (your preferred pattern)
|
||||
kuma.wikijs.http.name: "Wiki.js"
|
||||
kuma.wikijs.http.url: "https://wiki.netgrimoire.com"
|
||||
|
||||
drawio:
|
||||
image: jgraph/drawio:latest
|
||||
networks:
|
||||
- netgrimoire
|
||||
user: "1964:1964"
|
||||
environment:
|
||||
TZ: America/Chicago
|
||||
deploy:
|
||||
mode: replicated
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == dockerpi
|
||||
- node.labels.cpu == arm
|
||||
restart_policy:
|
||||
condition: any
|
||||
delay: 5s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
labels:
|
||||
diun.enable: "true"
|
||||
|
||||
# Caddy (adjust hostnames to your domain)
|
||||
caddy: draw.netgrimoire.com
|
||||
caddy.reverse_proxy: "{{upstreams 8080}}"
|
||||
|
||||
# Kuma labels
|
||||
kuma.drawio.http.name: "draw.io"
|
||||
kuma.drawio.http.url: "https://draw.netgrimoire.com"
|
||||
Loading…
Add table
Add a link
Reference in a new issue