aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-08-30 18:54:10 -0400
committerB. Stack <bgstack15@gmail.com>2023-08-30 19:00:54 -0400
commit20a6fe7e28467b319cfab2af6c2fe465b73a01bc (patch)
tree1df790ffbc6761a463e1d694a62446fa56e9b8f7 /docker-compose.yml
parentWIP: a few prefix parts work, but will need to fix link generation? (diff)
downloadnewspipe-docker-reverse-proxy.tar.gz
newspipe-docker-reverse-proxy.tar.bz2
newspipe-docker-reverse-proxy.zip
prepare documentationreverse-proxy
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 76d2e59..d64b94d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -15,6 +15,8 @@ services:
NEWSPIPE_HOST: "0.0.0.0"
NEWSPIPE_PORT: 5004
NEWSPIPE_BRANCH: "reverse-proxy"
+ # pass any hardcoded arguments to entrypoint.sh with this:
+ #command: /entrypoint.sh sleep
volumes:
# Enable this if you wish to develop the app live, after git cloning to this ./git directory.
#- "./git:/newspipe"
bgstack15