aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 76d2e59b8d265656febd3049d398bfcada2465ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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: "reverse-proxy"
    volumes:
      # Enable this if you wish to develop the app live, after git cloning to this ./git directory.
      #- "./git:/newspipe"
      - "./instance:/newspipe/instance"
bgstack15