We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7e2b1 commit 3c38c6eCopy full SHA for 3c38c6e
.gitignore
@@ -1,3 +1,6 @@
1
+__pycache__/
2
recordings/
3
+*.pyc
4
.env
5
+config.py
6
docker-compose.yml
entrypoint.sh
@@ -14,12 +14,8 @@ quality = "${QUALITY}"
14
client_id = "${CLIENT_ID}"
15
client_secret = "${CLIENT_SECRET}"
16
auth_token = "${AUTH_TOKEN}"
17
-EOF
18
-
19
-# Use optional variables, if present
20
-cat <<EOF >> /opt/config.py
21
-disable_ffmpeg = "${DISABLE_FFMPEG:-False}"
22
-refresh = "${REFRESH:-15}"
+disable_ffmpeg = ${DISABLE_FFMPEG:-False}
+refresh = ${REFRESH:-15}
23
EOF
24
25
# Hand off to the CMD
0 commit comments