syntax linting
This commit is contained in:
35
emerald-theory/adguard/docker-compose.yml
Normal file
35
emerald-theory/adguard/docker-compose.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
|
||||
# AdGuard
|
||||
# Privacy focused DNS server
|
||||
# Created by AdGuard Team
|
||||
# ↳ https://github.com/adguardteam
|
||||
|
||||
services:
|
||||
adguard:
|
||||
image: adguard/adguardhome:latest
|
||||
container_name: adguard
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
ports:
|
||||
- 53:53/tcp
|
||||
- 53:53/udp
|
||||
- 853:853 # DNS over QUIC
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/adguard/data:/opt/adguardhome/work
|
||||
- /home/fxequals/docker/adguard:/opt/adguardhome/conf
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://adguard.com/kb/adguard-for-windows/admins-documentation/
|
Reference in New Issue
Block a user