removed version number

This commit is contained in:
2024-03-29 03:20:36 -05:00
parent ff98072ee0
commit 9231d09b82
21 changed files with 0 additions and 241 deletions

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
dockge: dockge:
container_name: dockge container_name: dockge

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
archivebox: archivebox:
container_name: archivebox container_name: archivebox

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
filebrowser: filebrowser:
container_name: filebrowser container_name: filebrowser

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
homepage: homepage:
container_name: homepage container_name: homepage

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
adguardhome-sync: adguardhome-sync:
container_name: adguardhome-sync container_name: adguardhome-sync

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
olivetin: olivetin:
container_name: olivetin container_name: olivetin

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
paperless-redis: paperless-redis:
container_name: paperless-redis container_name: paperless-redis

View File

@@ -1,4 +1,3 @@
version: '3.5'
services: services:
photoprism: photoprism:
container_name: photoprism container_name: photoprism

View File

@@ -1,12 +0,0 @@
#GLOBAL SETTINGS
COMPOSE_HTTP_TIMEOUT=120
COMPOSE_IGNORE_ORPHANS=1
DOCKER_CONFIGS=.
DOCKERGID=999
DOCKERHOSTNAME=DockerServer2
DOCKERLOGGING_MAXFILE=10
DOCKERLOGGING_MAXSIZE=200k
PGID=1000
PUID=1000
UMASK=000
TZ=America/Chicago

View File

@@ -1,75 +0,0 @@
version: '3'
services:
# piped:
# container_name: piped
# image: 1337kavin/piped:latest
# depends_on:
# - piped-postgres
# networks:
# - piped
# restart: always
# volumes:
# - ${DOCKER_CONFIGS}/config/config.properties:/app/config.properties:ro
# piped-frontend:
# container_name: piped-frontend
# image: 1337kavin/piped-frontend:latest
# entrypoint: ash -c 'sed -i s/pipedapi.kavin.rocks/pipedapi.akanealw.com/g /usr/share/nginx/html/assets/* && /docker-entrypoint.sh && nginx -g "daemon off;"'
# networks:
# - piped
# depends_on:
# - piped
# restart: always
# piped-nginx:
# container_name: piped-nginx
# image: nginx:mainline-alpine
# depends_on:
# - piped
# - piped-proxy
# - piped-frontend
# networks:
# - piped
# - reverse-proxy
# ports:
# - 8585:80
# restart: always
# volumes:
# - ${DOCKER_CONFIGS}/config/nginx.conf:/etc/nginx/nginx.conf:ro
# - ${DOCKER_CONFIGS}/config/pipedapi.conf:/etc/nginx/conf.d/pipedapi.conf:ro
# - ${DOCKER_CONFIGS}/config/pipedproxy.conf:/etc/nginx/conf.d/pipedproxy.conf:ro
# - ${DOCKER_CONFIGS}/config/pipedfrontend.conf:/etc/nginx/conf.d/pipedfrontend.conf:ro
# - ${DOCKER_CONFIGS}/config/ytproxy.conf:/etc/nginx/snippets/ytproxy.conf:ro
# - ${DOCKER_CONFIGS}/piped-proxy:/var/run/ytproxy
# piped-postgres:
# container_name: piped-postgres
# image: postgres:15
# environment:
# - POSTGRES_DB=piped
# - POSTGRES_USER=piped
# - POSTGRES_PASSWORD=Vee0caiv8ieceeDae1aepheirophai
# networks:
# - piped
# restart: always
# volumes:
# - ${DOCKER_CONFIGS}/data/db:/var/lib/postgresql/data
# piped-proxy:
# container_name: piped-proxy
# image: 1337kavin/piped-proxy:latest
# environment:
# - UDS=1
# networks:
# - piped
# restart: always
# volumes:
# - ${DOCKER_CONFIGS}/piped-proxy:/app/socket
networks:
piped:
name: piped
reverse-proxy:
name: reverse-proxy
external: true

View File

@@ -1,37 +0,0 @@
# The port to Listen on.
PORT: 8080
# The number of workers to use for the server
HTTP_WORKERS: 2
# Proxy
PROXY_PART: https://pipedproxy.akanealw.com
# Outgoing HTTP Proxy - eg: 127.0.0.1:8118
#HTTP_PROXY: 127.0.0.1:8118
# Captcha Parameters
CAPTCHA_BASE_URL: https://api.capmonster.cloud/
CAPTCHA_API_KEY: INSERT_HERE
# Public API URL
API_URL: https://pipedapi.akanealw.com
# Public Frontend URL
FRONTEND_URL: https://piped.akanealw.com
# Enable haveibeenpwned compromised password API
COMPROMISED_PASSWORD_CHECK: true
# Disable Registration
DISABLE_REGISTRATION: false
# Feed Retention Time in Days
FEED_RETENTION: 30
# Hibernate properties
hibernate.connection.url: jdbc:postgresql://piped-postgres:5432/piped
hibernate.connection.driver_class: org.postgresql.Driver
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
hibernate.connection.username: piped
hibernate.connection.password: Vee0caiv8ieceeDae1aepheirophai

View File

@@ -1,33 +0,0 @@
user root;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 128;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nodelay on;
keepalive_timeout 65;
resolver 127.0.0.11 ipv6=off valid=10s;
include /etc/nginx/conf.d/*.conf;
}

View File

@@ -1,15 +0,0 @@
proxy_cache_path /tmp/pipedapi_cache levels=1:2 keys_zone=pipedapi:4m max_size=2g inactive=60m use_temp_path=off;
server {
listen 80;
server_name pipedapi.akanealw.com;
set $backend "http://piped:8080";
location / {
proxy_cache pipedapi;
proxy_pass $backend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}
}

View File

@@ -1,12 +0,0 @@
server {
listen 80;
server_name piped.akanealw.com;
set $backend "http://piped-frontend:80";
location / {
proxy_pass $backend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}
}

View File

@@ -1,14 +0,0 @@
server {
listen 80;
server_name pipedproxy.akanealw.com;
location ~ (/videoplayback|/api/v4/|/api/manifest/) {
include snippets/ytproxy.conf;
add_header Cache-Control private always;
}
location / {
include snippets/ytproxy.conf;
add_header Cache-Control "public, max-age=604800";
}
}

View File

@@ -1,18 +0,0 @@
proxy_buffering on;
proxy_buffers 1024 16k;
proxy_set_header X-Forwarded-For "";
proxy_set_header CF-Connecting-IP "";
proxy_hide_header "alt-svc";
sendfile on;
sendfile_max_chunk 512k;
tcp_nopush on;
aio threads=default;
aio_write on;
directio 16m;
proxy_hide_header Cache-Control;
proxy_hide_header etag;
proxy_http_version 1.1;
proxy_set_header Connection keep-alive;
proxy_max_temp_file_size 32m;
access_log off;
proxy_pass http://unix:/var/run/ytproxy/actix.sock;

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
authelia: authelia:
container_name: authelia container_name: authelia

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
rss-bridge: rss-bridge:
container_name: rss-bridge container_name: rss-bridge

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
shlink-server: shlink-server:
container_name: shlink-server container_name: shlink-server

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
vaultwarden: vaultwarden:
container_name: vaultwarden container_name: vaultwarden

View File

@@ -1,5 +1,3 @@
version: '3'
services: services:
bazarr: bazarr:
container_name: bazarr container_name: bazarr