Skip to content

Commit

Permalink
Restore custom compose
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad committed Mar 10, 2024
1 parent 2b9f842 commit f3860f6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The architectures supported by this image are:

Webui is accessible at http://SERVERIP:PORT

Please note that as of version 0.45.15 this image contains the Playwright content fetcher.
Please note that as of version 0.45.16 this image contains the Playwright content fetcher.

For more info read [the wiki](https://github.com/dgtlmoon/changedetection.io/wiki).

Expand All @@ -76,15 +76,15 @@ To help you get started creating a container from this image you can either use
services:
changedetection.io:
image: lscr.io/linuxserver/changedetection.io:latest
container_name: changedetection.io
container_name: changedetection
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- BASE_URL= #optional
- PLAYWRIGHT_DRIVER_URL= #optional
volumes:
- /path/to/changedetection.io/config:/config
- /path/to/changedetection/config:/config
ports:
- 5000:5000
restart: unless-stopped
Expand Down
18 changes: 18 additions & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,24 @@ opt_param_env_vars:
- { env_var: "BASE_URL", env_value: "", desc: "Specify the full URL (including protocol) when running behind a reverse proxy" }
- { env_var: "PLAYWRIGHT_DRIVER_URL", env_value: "", desc: "Specify the full URL to your chrome driver instance. See the [wiki](https://github.com/dgtlmoon/changedetection.io/wiki/Playwright-content-fetcher) for details." }

custom_compose: |
---
services:
changedetection.io:
image: lscr.io/linuxserver/changedetection.io:latest
container_name: changedetection
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- BASE_URL= #optional
- PLAYWRIGHT_DRIVER_URL= #optional
volumes:
- /path/to/changedetection/config:/config
ports:
- 5000:5000
restart: unless-stopped
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Expand Down

0 comments on commit f3860f6

Please sign in to comment.