Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 930 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 930 Bytes

Build and Publish Docker Image

image

Docker

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

Docker Compose

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