This commit is contained in:
2025-10-08 13:20:38 +00:00
parent 7c27ad74ff
commit 7a7b150c47
17 changed files with 31 additions and 8 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
**/data/ **/data/
nginx-proxy-manager/letsencrypt

1
docker

Submodule docker deleted from 2d7c90de46

0
it-tools/docker-compose.yml Executable file → Normal file
View File

0
nginx-proxy-manager/compose.yml Executable file → Normal file
View File

0
nginx/compose.yml Executable file → Normal file
View File

4
ntfy/compose.yml Executable file → Normal file
View File

@@ -10,8 +10,8 @@ services:
- TZ=Europe/Oslo # optional: set desired timezone - TZ=Europe/Oslo # optional: set desired timezone
#user: UID:GID # optional: replace with your own user/group or uid/gid #user: UID:GID # optional: replace with your own user/group or uid/gid
volumes: volumes:
- /home/rcadmin/ntfy/cache_ntfy:/var/cache/ntfy - /home/rcadmin/docker/ntfy/data/cache_ntfy:/var/cache/ntfy
- /home/rcadmin/ntfy/etc_ntfy:/etc/ntfy - /home/rcadmin/docker/ntfy/data/etc_ntfy:/etc/ntfy
ports: ports:
- 80:80 - 80:80
healthcheck: # optional: remember to adapt the host:port to your environment healthcheck: # optional: remember to adapt the host:port to your environment

View File

@@ -18,11 +18,12 @@ services:
# Set the appropriate timezone for your location (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g: # Set the appropriate timezone for your location (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g:
TZ: 'Europe/Oslo' TZ: 'Europe/Oslo'
# Set a password to access the web interface. Not setting one will result in a random password being assigned # Set a password to access the web interface. Not setting one will result in a random password being assigned
FTLCONF_webserver_api_password: 'correct horse battery staple' FTLCONF_webserver_api_password: 'homekbr1998'
# Volumes store your data between container upgrades # Volumes store your data between container upgrades
volumes: volumes:
# For persisting Pi-hole's databases and common configuration file # For persisting Pi-hole's databases and common configuration file
- './etc-pihole:/etc/pihole' #- '/home/rcadmin/docker/pihole/etc-pihole:/etc/pihole'
- '/home/rcadmin/docker/pihole/data:/etc/pihole'
# Uncomment the below if you have custom dnsmasq config files that you want to persist. Not needed for most starting fresh with Pi-hole v6. If you're upgrading from v5 you and have used this directory before, you should keep it enabled for the first v6 container start to allow for a complete migration. It can be removed afterwards # Uncomment the below if you have custom dnsmasq config files that you want to persist. Not needed for most starting fresh with Pi-hole v6. If you're upgrading from v5 you and have used this directory before, you should keep it enabled for the first v6 container start to allow for a complete migration. It can be removed afterwards
#- './etc-dnsmasq.d:/etc/dnsmasq.d' #- './etc-dnsmasq.d:/etc/dnsmasq.d'
cap_add: cap_add:

View File

@@ -1,4 +1,5 @@
#name: <your project name> #name: Portainer
services: services:
portainer-ce: portainer-ce:
ports: ports:
@@ -8,8 +9,13 @@ services:
restart: always restart: always
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- ./portainer_data:/data - /home/rcadmin/docker/portainer/data:/data
image: portainer/portainer-ce:lts image: portainer/portainer-ce:lts
deploy:
placement:
constraints:
- node.role == manager
#volumes: #volumes:
# portainer_data: # portainer_data:
# external: true # external: true

0
qbittorrent/appdata/config/.emptyFile Executable file → Normal file
View File

View File

0
qbittorrent/downloads/.emptyFile Executable file → Normal file
View File

2
uptime_kuma/compose.yml Executable file → Normal file
View File

@@ -6,7 +6,7 @@ services:
image: 'louislam/uptime-kuma:1' image: 'louislam/uptime-kuma:1'
container_name: uptime-kuma container_name: uptime-kuma
volumes: volumes:
- '/home/rcadmin/uptime_kuma/data:/app/data' - '/home/rcadmin/docker/uptime_kuma/data:/app/data'
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
ports: ports:
- '127.0.0.1:3001:3001' - '127.0.0.1:3001:3001'

0
vaultwarden/.env → vaultwarden/.env.old Executable file → Normal file
View File

16
vaultwarden/compose.yml Normal file
View File

@@ -0,0 +1,16 @@
# Service Name: VaultWarden
# Description : Open source server for bitwarden clients
# Homepage : https://github.com/dani-garcia/vaultwarden
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
environment:
DOMAIN: "https://vaultwarden.ramberg.net"
volumes:
- /home/rcadmin/docker/vaultwarden/data/:/data/
ports:
- 127.0.0.1:8000:80
# - 8000:80

View File