aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..492dc69
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,21 @@
+version: '3.5'
+# File: docker-compose.yml
+# Project: newspipe-docker
+# Startdate: 2023-06-15-5 14:52
+#
+services:
+ newspipe:
+ build: .
+ image: newspipe:latest
+ ports:
+ - 5004:5004
+ environment:
+ ADMIN_NICKNAME: "admin"
+ ADMIN_PASSWORD: "1234567890"
+ NEWSPIPE_HOST: "0.0.0.0"
+ NEWSPIPE_PORT: 5004
+ NEWSPIPE_BRANCH: "stackrpms-branding"
+ volumes:
+ # Enable this if you wish to develop the app live, after git cloning to this ./git directory.
+ #- "./git:/newspipe"
+ - "./instance:/newspipe/instance"
bgstack15