You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[OPTIONAL]`file`: name of the downloaded file. The filename may also be provided through a query param on the export request (e.g. `/example?file=my-name.csv`). If no filename is provided, the export will be displayed inline in the browser.
29
+
30
+
## Example docker-compose
31
+
32
+
```yaml
33
+
version: '2',
34
+
services:
35
+
export:
36
+
image: semtech/mu-export-js-template:0.2.0
37
+
volumes:
38
+
- ./:/config
39
+
links:
40
+
- database:database
37
41
```
42
+
43
+
Note: if you extend the `semtech/mu-export-js-template` with an `export.js` file instead of mounting a volume in `/config`, the `ONBUILD` commands of the `semtech/mu-javascript-template` will not be executed in your image since `ONBUILD` is only executed one level deep.
0 commit comments