ajout app
This commit is contained in:
0
Fireshare/docker-compose-traefik.yml
Normal file
0
Fireshare/docker-compose-traefik.yml
Normal file
36
Fireshare/docker-compose.yml
Normal file
36
Fireshare/docker-compose.yml
Normal file
@ -0,0 +1,36 @@
|
||||
version: '3.3'
|
||||
services:
|
||||
server:
|
||||
container_name: vaultwarden
|
||||
volumes:
|
||||
- /srv/appdata/vaultwarden/docker/vaultwarden:/data/'
|
||||
environment:
|
||||
- SIGNUPS_ALLOWED=true
|
||||
- ADMIN_TOKEN=ChoisissezUnMotDePassFort
|
||||
ports:
|
||||
- '4044:80'
|
||||
image: 'vaultwarden/server:latest'
|
||||
|
||||
|
||||
version: "3"
|
||||
services:
|
||||
fireshare:
|
||||
container_name: fireshare
|
||||
image: shaneisrael/fireshare:latest
|
||||
ports:
|
||||
- "8480:80"
|
||||
volumes:
|
||||
- /srv/appdata/fireshare/data:/data
|
||||
- /srv/appdata/fireshare/processed:/processed
|
||||
- /srv/appdata/fireshare/videos:/videos
|
||||
environment:
|
||||
- ADMIN_USERNAME=admin
|
||||
- ADMIN_PASSWORD=admin
|
||||
- SECRET_KEY=replace_this_with_some_random_string
|
||||
- MINUTES_BETWEEN_VIDEO_SCANS=5
|
||||
# The location in the video thumbnails are generated. A value between 0-100 where 50 would be the frame in the middle of the video file and 0 would be the first frame of the video.
|
||||
- THUMBNAIL_VIDEO_LOCATION=0
|
||||
# The domain your instance is hosted at. (do not add http or https) e.x: v.fireshare.net, this is required for opengraph to work correctly for shared links.
|
||||
- DOMAIN=""
|
||||
- PUID=1000
|
||||
- PGID=1000
|
Reference in New Issue
Block a user