mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
updates to handbrake heimdall and streama
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
@@ -11,10 +11,11 @@ version: "3"
|
||||
#
|
||||
# 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
|
||||
# For https include FORCE_HTTPS=true
|
||||
# For https include: FORCE_HTTPS=true
|
||||
#
|
||||
###########################################################################################################################
|
||||
|
||||
@@ -28,4 +29,7 @@ services:
|
||||
volumes:
|
||||
- ./data:/config
|
||||
restart: unless-stopped
|
||||
#ports:
|
||||
# - "8000:80"
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,10 @@
|
||||
---
|
||||
version: "2"
|
||||
|
||||
volumes:
|
||||
streama-db:
|
||||
streama-movies:
|
||||
streama-appdata:
|
||||
|
||||
networks:
|
||||
admin_web:
|
||||
external:
|
||||
name: admin_web
|
||||
|
||||
services:
|
||||
streama-db:
|
||||
image: mariadb:${DB_V}
|
||||
restart: always
|
||||
networks:
|
||||
- admin_web
|
||||
volumes:
|
||||
- streama-db:/var/lib/mysql
|
||||
environment:
|
||||
@@ -31,8 +19,6 @@ services:
|
||||
restart: always
|
||||
depends_on:
|
||||
- streama-db
|
||||
networks:
|
||||
- admin_web
|
||||
volumes:
|
||||
- streama-movies:/data/streama # Change to your video folder
|
||||
- streama-appdata:/app/streama
|
||||
@@ -43,9 +29,3 @@ services:
|
||||
MYSQL_DB: streama
|
||||
MYSQL_USER: streama
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user