move to project lifecycle structure
This commit is contained in:
14
podman/incubating/compose/cloudflared-compose.yaml
Normal file
14
podman/incubating/compose/cloudflared-compose.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: "3"
|
||||
|
||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||
services:
|
||||
cloudflared:
|
||||
container_name: cloudflared
|
||||
image: docker.io/cloudflare/cloudflared:2024.5.0
|
||||
command: proxy-dns --address 0.0.0.0 --port 5053 --upstream https://1.1.1.1/dns-query --upstream https://1.0.0.1/dns-query
|
||||
ports:
|
||||
- "5053:5053/tcp"
|
||||
- "5053:5053/udp"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- podman1
|
||||
12
podman/incubating/compose/iperf3-compose.yaml
Normal file
12
podman/incubating/compose/iperf3-compose.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
iperf3:
|
||||
container_name: iperf3
|
||||
image: docker.io/networkstatic/iperf3:latest
|
||||
ports:
|
||||
- "5202:5201/tcp"
|
||||
command: -s
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- podman1
|
||||
25
podman/incubating/compose/pihole-compose.yaml
Normal file
25
podman/incubating/compose/pihole-compose.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: "3"
|
||||
|
||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||
services:
|
||||
pihole:
|
||||
container_name: pihole
|
||||
image: docker.io/pihole/pihole:2024.05.0
|
||||
ports:
|
||||
- "53:53/tcp"
|
||||
- "53:53/udp"
|
||||
- "8081:80/tcp"
|
||||
environment:
|
||||
TZ: "America/Chicago"
|
||||
# WEBPASSWORD: "SET A PASSWORD HERE"
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- pihole:/etc/pihole
|
||||
- dnsmasq:/etc/dnsmasq.d
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- podman1
|
||||
|
||||
volumes:
|
||||
pihole:
|
||||
dnsmasq:
|
||||
Reference in New Issue
Block a user