1
0
mirror of https://github.com/TeamNewPipe/website synced 2025-10-05 16:13:13 +02:00
Files
website/docker-compose.yml.example
2018-03-29 17:27:32 +02:00

30 lines
646 B
Plaintext

version: '2'
services:
web:
build:
context: .
args:
# ISSO_ADDRESS is the address of the isso installation
ISSO_ADDRESS: http://127.0.0.1:8081
ports:
- 127.0.0.1:8080:80
isso:
image: quay.io/teamnewpipe/isso-docker:master
ports:
- 127.0.0.1:8081:80
environment:
# ISSO_HOST is the address of the blog
ISSO_HOST: "http://127.0.0.1:8080"
#ISSO_NAME: "comments.example.net"
#ISSO_MAX_AGE: "30m"
#ISSO_REPLY_TO_SELF: "false"
#ISSO_REQUIRE_EMAIL: "false"
ISSO_REQUIRE_AUTHOR: "true"
volumes:
- isso-data:/data
volumes:
isso-data: