all
This commit is contained in:
32
Fichier-Stockage-Gestionnaire/Fireshare/README.md
Normal file
32
Fichier-Stockage-Gestionnaire/Fireshare/README.md
Normal file
@ -0,0 +1,32 @@
|
||||

|
||||
|
||||
# Adminer
|
||||
|
||||
Adminer est un outil de gestion de base de données complet écrit en PHP. Inversement à phpMyAdmin, il consiste en un seul fichier prêt à être déployé sur le serveur cible. Adminer est disponible pour MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB et autres via plugin
|
||||
|
||||
# Installation
|
||||
|
||||
Pour utiliser Adminer tout seul
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
Pour utiliser Adminer avec Traefik
|
||||
```bash
|
||||
docker compose -f docker-compose-traefik.yml up -d
|
||||
```
|
||||
|
||||
Pour utiliser Adminer avec Nginx
|
||||
```bash
|
||||
docker compose -f docker-compose-nginx.yml up -d
|
||||
```
|
||||
# Utilisation
|
||||
|
||||
## Accueil
|
||||

|
||||
|
||||
# More info
|
||||
- more information on the website [Tips-Of-Mine](https://www.tips-of-mine.fr/)
|
||||
|
||||
# Buy me a coffe
|
||||
<a href='https://ko-fi.com/R5R2KNI3N' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi4.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
36
Fichier-Stockage-Gestionnaire/Fireshare/docker-compose.yml
Normal file
36
Fichier-Stockage-Gestionnaire/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