Initial commit
This commit is contained in:
1
local/adguard/.env.example
Normal file
1
local/adguard/.env.example
Normal file
@@ -0,0 +1 @@
|
||||
IP_ADDRESS=
|
||||
10
local/adguard/README.md
Normal file
10
local/adguard/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
## WIP
|
||||
### Command for creating docker macvlan network
|
||||
### Change all CAPITAL arguments to your config
|
||||
docker network create -d macvlan -o parent=HOST_NIC --gateway DG --subnet SUB --ip-range SUB NAME
|
||||
|
||||
### Service for
|
||||
WIP
|
||||
|
||||
### DNS Rewrites
|
||||
Disable IPv6 at your LAN or implement it :)
|
||||
17
local/adguard/compose.yml
Normal file
17
local/adguard/compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
adguard:
|
||||
image: adguard/adguardhome
|
||||
container_name: adguard
|
||||
hostname: $HOSTNAME
|
||||
restart: always
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- ./work:/opt/adguardhome/work
|
||||
- ./conf:/opt/adguardhome/conf
|
||||
networks:
|
||||
lan:
|
||||
ipv4_address: $IP_ADDRESS
|
||||
networks:
|
||||
lan:
|
||||
external: true
|
||||
Reference in New Issue
Block a user