19 lines
454 B
YAML
19 lines
454 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
dpinger-container:
|
|
build:
|
|
context: .
|
|
image: local/dpinger-container:latest
|
|
command: -i <optional-identifier> -L 15 -D 80 <ip-address>
|
|
restart: unless-stopped
|
|
environment:
|
|
- NTFY_URL=https://ntfy.sh/test
|
|
|
|
# This is only needed if your Docker setup needs to go through a VPN to reach the Internet
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
driver_opts:
|
|
com.docker.network.driver.mtu: 1420
|