mirror of
https://github.com/sbondCo/Watcharr.git
synced 2026-06-23 04:10:07 +00:00
8a5fd8182f
* #390 and update docker-compose file in proj root to match one in docs * docker-compose.yml: fix port i changed this :(
15 lines
406 B
YAML
15 lines
406 B
YAML
version: "3"
|
|
|
|
services:
|
|
watcharr:
|
|
# The :latest tag is used for simplicity, it is recommended
|
|
# to use an actual version, then when updating check the releases for changelogs.
|
|
image: ghcr.io/sbondco/watcharr:latest
|
|
container_name: watcharr
|
|
ports:
|
|
- 3080:3080
|
|
volumes:
|
|
# Contains all of watcharr data (database & cache)
|
|
- ./data:/data
|
|
restart: unless-stopped
|