aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: d64b94dc1dbdf5b239d3a17a1447d2594c538a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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: "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"
      - "./instance:/newspipe/instance"
bgstack15