Chad
f56b3da23d
* Create explicit file for cron, add two automations from fixes. * Merge the OnlyOffice project into the Nextcloud project. Enhance comments and changelog. Make the container names consistent. * Found the link. :) * Add more variables. * Add a TBD file for mail server. * Create new script which will replace most the existing single purpose management scripts. * Add limit to DNS so that if Internet goes out it does not max system resources. * Prevent OnlyOffice from getting too hungry. * Ensure Reverse Proxy always has at least some resources. * Separate build. Add stats -s and combination option -A. * Make script config file aware. Add comments. * Add more comments. * Fix comments. * Further determine resource allocations. * Also avoid checking for cron's call to the program. * Add clean and log parameters. Some clean up. * Update setups to have DIR first. * Remove files taken over by manage script. * Cleaning comments and output.
27 lines
505 B
YAML
27 lines
505 B
YAML
# 2023-07-29
|
|
#
|
|
# Local DNS server which properly handles DNS splitting.
|
|
# Necessary when using junk ISP gateways and running a domain.
|
|
# https://thekelleys.org.uk/dnsmasq/doc.html
|
|
#
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
app:
|
|
container_name: dns-app
|
|
build: ./
|
|
restart: always
|
|
ports:
|
|
- "53:53/udp"
|
|
- "53:53/tcp"
|
|
deploy:
|
|
mode: global
|
|
resources:
|
|
limits:
|
|
cpus: '0.50'
|
|
memory: 512M
|
|
reservations:
|
|
cpus: '0.25'
|
|
memory: 128M
|