generated from ddev/ddev-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.yaml
21 lines (16 loc) · 921 Bytes
/
install.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Details about the install.yaml file are at https://ddev.readthedocs.io/en/latest/users/extend/additional-services/#sections-and-features-of-ddev-get-add-on-installyaml
name: ddev-diffy
project_files:
- docker-compose.diffy.yaml
- commands/diffy/screenshot
- config.diffy.yaml
# List of files and directories that are copied into the global .ddev directory
# DDEV environment variables can be interpolated into these filenames
global_files:
# Download the latest version of the worker code
post_install_actions:
- rm -rf diffy-worker && mkdir diffy-worker
- docker run -it --rm -v ./diffy-worker:/diffy-worker --user $DDEV_UID:$DDEV_GID ddev/ddev-utilities bash -c "cd /diffy-worker && wget -qO- https://github.com/DiffyWebsite/diffy-worker/archive/refs/heads/chrome131.tar.gz | tar xz --strip-components=1"
# Shell actions that can be done during removal of the add-on
removal_actions:
- rm -rf diffy-worker