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"