pihelper/.devcontainer/docker-compose.yml
Renovate Bot 2b48f1e2a7
Some checks failed
Build / build (pull_request) Successful in 28s
Enable Auto Merge / auto-merge (pull_request) Has been skipped
Publish Docker image / Push Docker image to GitHub Packages (push) Failing after 37s
Update pihole/pihole Docker tag to v2023
2024-06-18 04:01:03 +00:00

22 lines
621 B
YAML

version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
args:
VARIANT: 16-bullseye
environment:
PIHELPER_PIHOLE_HOST: 'http://pihole'
PIHELPER_API_KEY: 5536c470d038c11793b535e8c1176817c001d6f20a4704fa7908939be82e2922
volumes:
- ..:/workspace:cached
# Overrides default command so things don't shut down after the process ends.
command: /bin/sh -c "while sleep 1000; do :; done"
network_mode: service:pihole
user: node
pihole:
image: pihole/pihole:2023.01
environment:
WEBPASSWORD: pihole
restart: unless-stopped