Skip to content

Commit

Permalink
Update compose in readme
Browse files Browse the repository at this point in the history
[skipci]
  • Loading branch information
austinwbest committed Nov 30, 2023
1 parent 77c7e50 commit 58f9bc2
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ docker run \
-d \
--name "/dockwatch" \
--volume "/home/dockwatch/config:/config:rw" \
--volume "/home/dockwatch/logs:/logs:rw" \
--volume "/var/run/docker.sock:/var/run/docker.sock:rw" \
--restart "unless-stopped" \
--publish "9999:80/tcp" \
Expand All @@ -68,20 +67,19 @@ docker run \
## Compose
This is an example, adjust paths and settings for your setup
```
dockwatch:
container_name: dockwatch
image: ghcr.io/notifiarr/dockwatch:main
ports:
- 9999:80/tcp
environment:
- PUID=1000
- PGID=999
- UMASK=022
- TZ=Etc/UTC
volumes:
- /appdata/dockwatch/config:/config
- /var/run/docker.sock:/var/run/docker.sock
- /proc:/proc
version: "2.1"
services:
dockwatch:
container_name: dockwatch
image: ghcr.io/notifiarr/dockwatch:main
ports:
- 9999:80/tcp
environment:
- PGID=999
- TZ=America/New_York
volumes:
- /home/dockwatch/config:/config
- /var/run/docker.sock:/var/run/docker.sock
```

## Manual
Expand Down

0 comments on commit 58f9bc2

Please sign in to comment.