├── .gitignore ├── LICENSE ├── README.md ├── configure-instance.sh └── template ├── Caddyfile ├── config.properties ├── docker-compose.caddy.yml ├── docker-compose.nginx.yml ├── docker-compose.standalone.yml ├── nginx.conf ├── pipedapi.conf ├── pipedfrontend.conf ├── pipedproxy.conf └── ytproxy.conf /.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | data/ 3 | /docker-compose.yml 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/README.md -------------------------------------------------------------------------------- /configure-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/configure-instance.sh -------------------------------------------------------------------------------- /template/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/Caddyfile -------------------------------------------------------------------------------- /template/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/config.properties -------------------------------------------------------------------------------- /template/docker-compose.caddy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/docker-compose.caddy.yml -------------------------------------------------------------------------------- /template/docker-compose.nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/docker-compose.nginx.yml -------------------------------------------------------------------------------- /template/docker-compose.standalone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/docker-compose.standalone.yml -------------------------------------------------------------------------------- /template/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/nginx.conf -------------------------------------------------------------------------------- /template/pipedapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/pipedapi.conf -------------------------------------------------------------------------------- /template/pipedfrontend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/pipedfrontend.conf -------------------------------------------------------------------------------- /template/pipedproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/pipedproxy.conf -------------------------------------------------------------------------------- /template/ytproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPiped/Piped-Docker/HEAD/template/ytproxy.conf --------------------------------------------------------------------------------