Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude authored Mar 25, 2024
1 parent 38e30a8 commit f1c9d46
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
[![Build and Publish Docker Image](https://github.com/traefikturkey/ongoing/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/traefikturkey/ongoing/actions/workflows/docker-publish.yml)

![image](https://github.com/traefikturkey/ongoing/assets/219478/00fef29e-3024-475b-b6b0-0c7fb0f2e983)
![image](https://github.com/traefikturkey/ongoing/assets/219478/e720e08a-6980-4c59-846e-6631c9d50761)

### Docker
Run:
```
```bash
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

```docker-compose.yml
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
```

0 comments on commit f1c9d46

Please sign in to comment.