Compare commits

..

No commits in common. "b1b48ee5b728992fa307db93645517a02dcd22d6" and "319e0d38ca27ad08430370eac58a5fb5a9322fbe" have entirely different histories.

14 changed files with 10 additions and 56 deletions

View file

@ -1,16 +0,0 @@
[Unit]
Description=DDNS updater (Compose Service)
Requires=docker.service
After=docker.service
[Service]
WorkingDirectory=/opt/ddns-updater
ExecStart=/usr/bin/docker-compose --project-name ddns-updater up
ExecStop=/usr/bin/docker-compose --project-name ddns-updater down
TimeoutStartSec=0
Restart=on-failure
StartLimitIntervalSec=60
StartLimitBurst=3
[Install]
WantedBy=multi-user.target

View file

@ -1,16 +0,0 @@
[Unit]
Description=DNS proxy (Compose Service)
Requires=docker.service
After=docker.service
[Service]
WorkingDirectory=/opt/dns-proxy
ExecStart=/usr/bin/docker-compose --project-name dns-proxy up
ExecStop=/usr/bin/docker-compose --project-name dns-proxy down
TimeoutStartSec=0
Restart=on-failure
StartLimitIntervalSec=60
StartLimitBurst=3
[Install]
WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -13,3 +13,4 @@ StartLimitBurst=3
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View file

@ -1,11 +0,0 @@
---
version: "3.0"
services:
updater:
image: qmcgaw/ddns-updater:256
restart: unless-stopped
environment:
CONFIG: '${CONFIG}'
ports:
- "8000:8000"

View file

@ -1,13 +0,0 @@
---
version: "3.0"
services:
proxy:
image: visibilityspots/cloudflared:2023.2.1-alpine-3.17
restart: unless-stopped
environment:
UPSTREAM1: '${UPSTREAM1}'
UPSTREAM2: '${UPSTREAM2}'
ports:
- "53:5054/tcp"
- "53:5054/udp"