We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5823f3e commit ac2fd43Copy full SHA for ac2fd43
README.md
@@ -12,14 +12,13 @@ See [zap2xml](https://web.archive.org/web/20200426004001/zap2xml.awardspace.info
12
### Compose
13
14
```yaml
15
-version: '3'
16
services:
17
zap2xml:
18
container_name: zap2xml
19
image: ghcr.io/jef/zap2xml:latest
20
environment:
21
OPT_ARGS: >-
22
- -I -D -C /config/.zap2xmlrc
+ -I -D -C /config/.zap2xmlrc -o /xmltv/xmltv.xml
23
SLEEPTIME: 43200 # 12 hours in seconds
24
TZ: America/New_York
25
volumes:
entrypoint.sh
@@ -3,7 +3,7 @@
3
while :
4
do
5
DATE=$(date)
6
- /opt/zap2xml.pl "$OPT_ARGS"
+ eval /opt/zap2xml.pl "$OPT_ARGS"
7
echo "Last run time: $DATE"
8
echo "Will run in $SLEEPTIME seconds"
9
sleep "$SLEEPTIME"
0 commit comments