updates to handbrake heimdall and streama

This commit is contained in:
2023-10-06 18:06:53 -07:00
parent 15c070390d
commit e86c689df4
3 changed files with 37 additions and 22 deletions
+31
View File
@@ -0,0 +1,31 @@
---
version: "3"
###########################################################################################################################
# Handbrake
#
# DockerHub: https://hub.docker.com/r/jlesage/handbrake
#
# SAMPLE ENV
# <intentionally blank>
#
# NOTES
#
# You can specify read and write for example:
# "handbrake-storage:/storage:ro"
# "handbrake-output:/output:rw"
###########################################################################################################################
services:
handbrake:
image: jlesage/handbrake
volumes:
- ./data/config:/config
- ./data/raw:/storage
- ./data/watch:/watch
- ./data/processed:/output
restart: "no"
ports:
- "8000:5800"
+6 -2
View File
@@ -11,10 +11,11 @@ version: "3"
# #
# NOTES # NOTES
# #
# Make sure your volume is set correctly # Make sure your volume is set correctly.
# Ports don't need to be set if behind proxy
# #
# You can edit vol/www/.env # You can edit vol/www/.env
# For https include FORCE_HTTPS=true # For https include: FORCE_HTTPS=true
# #
########################################################################################################################### ###########################################################################################################################
@@ -28,4 +29,7 @@ services:
volumes: volumes:
- ./data:/config - ./data:/config
restart: unless-stopped restart: unless-stopped
#ports:
# - "8000:80"
-20
View File
@@ -1,22 +1,10 @@
--- ---
version: "2" version: "2"
volumes:
streama-db:
streama-movies:
streama-appdata:
networks:
admin_web:
external:
name: admin_web
services: services:
streama-db: streama-db:
image: mariadb:${DB_V} image: mariadb:${DB_V}
restart: always restart: always
networks:
- admin_web
volumes: volumes:
- streama-db:/var/lib/mysql - streama-db:/var/lib/mysql
environment: environment:
@@ -31,8 +19,6 @@ services:
restart: always restart: always
depends_on: depends_on:
- streama-db - streama-db
networks:
- admin_web
volumes: volumes:
- streama-movies:/data/streama # Change to your video folder - streama-movies:/data/streama # Change to your video folder
- streama-appdata:/app/streama - streama-appdata:/app/streama
@@ -43,9 +29,3 @@ services:
MYSQL_DB: streama MYSQL_DB: streama
MYSQL_USER: streama MYSQL_USER: streama
MYSQL_PASSWORD: ${STREAMA_MYSQL_PASSWORD} MYSQL_PASSWORD: ${STREAMA_MYSQL_PASSWORD}
labels:
- "traefik.enable=true"
- "traefik.http.routers.${PREFIX}_streama.rule=Host(`${STREAMA_DOMAIN_NAME}`)"
- "traefik.http.routers.${PREFIX}_streama.entrypoints=websecure"
- "traefik.http.routers.${PREFIX}_streama.tls.certresolver=letsencrypt"
- "traefik.http.services.${PREFIX}_streama.loadbalancer.server.port=8080"