mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
13
fireshare/.env
Normal file
13
fireshare/.env
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Environment file for docker-compose.yaml
|
||||
# Generate new passwords with:
|
||||
# openssl rand -hex 32
|
||||
|
||||
# Fill in registry
|
||||
REGISTRY=
|
||||
|
||||
# Fireshare
|
||||
FIRESHARE_PORT=
|
||||
FIRESHARE_ADMIN=
|
||||
FIRESHARE_PASSWORD=
|
||||
FIRESHARE_SECRET=
|
||||
FIRESHARE_URL=
|
||||
29
fireshare/docker-compose.yaml
Normal file
29
fireshare/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
services:
|
||||
|
||||
# https://github.com/ShaneIsrael/fireshare
|
||||
fireshare:
|
||||
image: ${REGISTRY}/fireshare
|
||||
container_name: fireshare
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${FIRESHARE_PORT:-8080}:80
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./processed:/processed
|
||||
- ./videos:/videos
|
||||
- ./index.html:/app/build/index.html
|
||||
environment:
|
||||
ADMIN_USERNAME: ${FIRESHARE_ADMIN:-admin}
|
||||
ADMIN_PASSWORD: ${FIRESHARE_PASSWORD:-admin}
|
||||
SECRET_KEY: ${FIRESHARE_SECRET:-secret}
|
||||
MINUTES_BETWEEN_VIDEO_SCANS: 5
|
||||
THUMBNAIL_VIDEO_LOCATION: 0
|
||||
DOMAIN: ${FIRESHARE_URL:-localhost}
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
networks:
|
||||
- fireshare
|
||||
|
||||
networks:
|
||||
fireshare:
|
||||
external: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue