Skip to content

traefikturkey/ongoing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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