Run:
docker run --dns 1.1.1.1 -p 5000:5000 --rm ghcr.io/traefikturkey/ongoing:latest
Access http://localhost:5000
--dns will override any local dns incase you are using pihole
version: '3'
services:
ongoing:
image: ghcr.io/traefikturkey/ongoing:latest
container_name: ongoing
restart: unless-stopped
ports:
- 9380:9380
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
- TZ=${TZ}
dns:
- 1.1.1.1