This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
scrutiny: | |
image: linuxserver/scrutiny | |
container_name: scrutiny | |
privileged: true | |
environment: | |
- PUID=998 | |
- PGID=100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
volumes: | |
nextcloud: | |
db: | |
services: | |
db: | |
image: yobasystems/alpine-mariadb:latest | |
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
lychee: | |
image: linuxserver/lychee | |
container_name: lychee | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
volumes: | |
nextcloud: | |
db: | |
services: | |
db: | |
image: yobasystems/alpine-mariadb:latest | |
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker pull bitwardenrs/server:latest | |
sudo docker run -d --name bitwarden -v /srv/dev-disk-by-label-Files/Config/BitwardenRS/:/data/ -p 8100:80 bitwardenrs/server:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
duplicati: | |
image: linuxserver/duplicati | |
container_name: duplicati | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
bookstack: | |
image: linuxserver/bookstack | |
container_name: bookstack | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- DB_HOST=bookstack_db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
bitwardenrs: | |
image: bitwardenrs/server:latest | |
container_name: bitwardenrs | |
volumes: | |
- /srv/dev-disk-by-label-Files/Config/BitWardenRS:/data/ | |
ports: | |
- 8100:80 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: 2 | |
services: | |
pihole: | |
container_name: pihole | |
image: pihole/pihole:latest | |
ports: | |
- 53:53/tcp #DNS Port | |
- 53:53/udp #DNS Port | |
#- 67:67/udp #DHCP Port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
transmission-openvpn: | |
volumes: | |
- '/srv/dev-disk-by-label-Files/Config/Transmission:/data' | |
environment: | |
- OPENVPN_PROVIDER=PIA | |
- OPENVPN_CONFIG=France | |
- OPENVPN_USERNAME=Username | |
- OPENVPN_PASSWORD=Password |