containerze all the htings
This commit is contained in:
parent
321b44d0df
commit
dc6de5a37a
11
Apps/bitwaden/docker-compose.yml
Normal file
11
Apps/bitwaden/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: always
|
||||
environment:
|
||||
- WEBSOCKET_ENABLED=true # Enable WebSocket notifications.
|
||||
volumes:
|
||||
- ./vw-data:/data
|
19
Apps/pihole/docker-compose.yml
Normal file
19
Apps/pihole/docker-compose.yml
Normal file
@ -0,0 +1,19 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
pihole:
|
||||
container_name: pihole
|
||||
image: pihole/pihole:latest
|
||||
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
|
||||
ports:
|
||||
- "53:53/tcp"
|
||||
- "53:53/udp"
|
||||
environment:
|
||||
TZ: 'America/Chicago'
|
||||
# WEBPASSWORD: 'set a secure password here or it will be random'
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- './etc-pihole:/etc/pihole'
|
||||
- './etc-dnsmasq.d:/etc/dnsmasq.d'
|
||||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
||||
restart: unless-stopped # Recommended but not required (DHCP needs NET_ADMIN)
|
@ -21,12 +21,14 @@ export container_list="
|
||||
jonaswinkler/paperless-ng \
|
||||
seknox/guacd \
|
||||
seknox/trasa \
|
||||
linuxserver/swag \
|
||||
authelia/authelia \
|
||||
beanbag/reviewboard:latest \
|
||||
xetusoss/archiva \
|
||||
containrrr/watchtower:latest \
|
||||
stedolan/jq \
|
||||
perara/wg-manager \
|
||||
xetusoss/archiva
|
||||
pihole/pihole \
|
||||
linuxserver/swag \
|
||||
authelia/authelia
|
||||
"
|
||||
for container in $container_list;
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user