WireGuard hinzugefügt
This commit is contained in:
@@ -1,15 +0,0 @@
|
|||||||
version: "3.7"
|
|
||||||
services:
|
|
||||||
filebrowser:
|
|
||||||
container_name: filebrowser
|
|
||||||
image: filebrowser/filebrowser:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Europe/Berlin
|
|
||||||
ports:
|
|
||||||
- 8012:80
|
|
||||||
volumes:
|
|
||||||
- ./daten:/srv
|
|
||||||
- ./database/database.db:/database.db
|
|
||||||
2
vpn/.env.sample
Normal file
2
vpn/.env.sample
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
HOST=vpn.youtdomain.de
|
||||||
|
PASSWORD=ChangeMe
|
||||||
22
vpn/docker-compose.yml
Normal file
22
vpn/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
wg-easy:
|
||||||
|
image: weejewel/wg-easy
|
||||||
|
container_name: wg-easy
|
||||||
|
environment:
|
||||||
|
- WG_HOST=${HOST}
|
||||||
|
- PASSWORD=${PASSWORD}
|
||||||
|
- WG_DEFAULT_DNS=192.168.0.1, fritz.box
|
||||||
|
- WG_ALLOWED_IPS=10.8.0.0/24, 192.168.0.0/24
|
||||||
|
volumes:
|
||||||
|
- .:/etc/wireguard
|
||||||
|
ports:
|
||||||
|
- "51820:51820/udp"
|
||||||
|
- "51821:51821/tcp"
|
||||||
|
restart: unless-stopped
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_MODULE
|
||||||
|
sysctls:
|
||||||
|
- net.ipv4.ip_forward=1
|
||||||
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
---
|
|
||||||
version: "2"
|
|
||||||
services:
|
|
||||||
whoogle:
|
|
||||||
image: benbusby/whoogle-search:latest
|
|
||||||
container_name: whoogle
|
|
||||||
ports:
|
|
||||||
- 5000:5000
|
|
||||||
volumes:
|
|
||||||
- ./config:/config
|
|
||||||
restart: unless-stopped
|
|
||||||
Reference in New Issue
Block a user