-
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
**/data/
|
||||
nginx-proxy-manager/letsencrypt
|
||||
|
||||
1
docker
1
docker
Submodule docker deleted from 2d7c90de46
0
it-tools/docker-compose.yml
Executable file → Normal file
0
it-tools/docker-compose.yml
Executable file → Normal file
0
nginx-proxy-manager/compose.yml
Executable file → Normal file
0
nginx-proxy-manager/compose.yml
Executable file → Normal file
0
nginx/compose.yml
Executable file → Normal file
0
nginx/compose.yml
Executable file → Normal file
4
ntfy/compose.yml
Executable file → Normal file
4
ntfy/compose.yml
Executable file → Normal file
@@ -10,8 +10,8 @@ services:
|
||||
- TZ=Europe/Oslo # optional: set desired timezone
|
||||
#user: UID:GID # optional: replace with your own user/group or uid/gid
|
||||
volumes:
|
||||
- /home/rcadmin/ntfy/cache_ntfy:/var/cache/ntfy
|
||||
- /home/rcadmin/ntfy/etc_ntfy:/etc/ntfy
|
||||
- /home/rcadmin/docker/ntfy/data/cache_ntfy:/var/cache/ntfy
|
||||
- /home/rcadmin/docker/ntfy/data/etc_ntfy:/etc/ntfy
|
||||
ports:
|
||||
- 80:80
|
||||
healthcheck: # optional: remember to adapt the host:port to your environment
|
||||
|
||||
@@ -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:
|
||||
TZ: 'Europe/Oslo'
|
||||
# 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:
|
||||
# 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
|
||||
#- './etc-dnsmasq.d:/etc/dnsmasq.d'
|
||||
cap_add:
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
#name: <your project name>
|
||||
#name: Portainer
|
||||
|
||||
services:
|
||||
portainer-ce:
|
||||
ports:
|
||||
@@ -8,8 +9,13 @@ services:
|
||||
restart: always
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ./portainer_data:/data
|
||||
- /home/rcadmin/docker/portainer/data:/data
|
||||
image: portainer/portainer-ce:lts
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == manager
|
||||
|
||||
#volumes:
|
||||
# portainer_data:
|
||||
# external: true
|
||||
0
qbittorrent/appdata/config/.emptyFile
Executable file → Normal file
0
qbittorrent/appdata/config/.emptyFile
Executable file → Normal file
0
qbittorrent/docker-compose.yml → qbittorrent/compose.yml
Executable file → Normal file
0
qbittorrent/docker-compose.yml → qbittorrent/compose.yml
Executable file → Normal file
0
qbittorrent/downloads/.emptyFile
Executable file → Normal file
0
qbittorrent/downloads/.emptyFile
Executable file → Normal file
2
uptime_kuma/compose.yml
Executable file → Normal file
2
uptime_kuma/compose.yml
Executable file → Normal file
@@ -6,7 +6,7 @@ services:
|
||||
image: 'louislam/uptime-kuma:1'
|
||||
container_name: uptime-kuma
|
||||
volumes:
|
||||
- '/home/rcadmin/uptime_kuma/data:/app/data'
|
||||
- '/home/rcadmin/docker/uptime_kuma/data:/app/data'
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- '127.0.0.1:3001:3001'
|
||||
|
||||
0
vaultwarden/.env → vaultwarden/.env.old
Executable file → Normal file
0
vaultwarden/.env → vaultwarden/.env.old
Executable file → Normal file
16
vaultwarden/compose.yml
Normal file
16
vaultwarden/compose.yml
Normal 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
|
||||
0
vaultwarden/docker-compose.yml → vaultwarden/compose.yml.old
Executable file → Normal file
0
vaultwarden/docker-compose.yml → vaultwarden/compose.yml.old
Executable file → Normal file
Reference in New Issue
Block a user