global
This commit is contained in:
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/r7wx/easy-gate
|
||||
|
||||
# Chibisafe
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/revenz/Fenrus
|
||||
|
||||
# Droppy
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/pawelmalak/flame
|
||||
|
||||
# File Browser
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/linuxserver/Heimdall
|
||||
|
||||
# FileGator
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/ajnart/homarr/
|
||||
|
||||
# FileRun
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/gethomepage/homepage
|
||||
|
||||
# Filestash
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
|
||||
# Adminer
|
||||
|
||||
@ -29,4 +29,4 @@ docker compose -f docker-compose-nginx.yml up -d
|
||||
- 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>
|
||||
<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>
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL :
|
||||
|
||||
# Gokapi
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/causefx/Organizr
|
||||
|
||||
# Mega
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL :
|
||||
|
||||
# Nextcloud
|
||||
@ -52,11 +52,11 @@ docker compose -f docker-compose-traefik.yml up -d
|
||||
Ouvrir une page web avec l'url :
|
||||
Pour une utilisation tout seul
|
||||
|
||||
http://10.0.4.29:3000
|
||||
http://10.0.4.29:8081
|
||||
|
||||
Pour une utilisation avec Traefik
|
||||
|
||||
https://Nextcloud.10.0.4.29.traefik.me`)"
|
||||
https://Nextcloud.10.0.4.29.traefik.me
|
||||
|
||||
|
||||
# More info
|
||||
|
@ -1,66 +1,66 @@
|
||||

|
||||
URL : HHHHH
|
||||
#### NETWORKS
|
||||
networks:
|
||||
docker-traefik_front_network:
|
||||
external: true
|
||||
back_network:
|
||||
driver: bridge
|
||||
attachable: true
|
||||
|
||||
# Fichier-Stockage
|
||||
#### SERVICES
|
||||
services:
|
||||
### nextcloud
|
||||
nextcloud:
|
||||
container_name: nextcloud-app
|
||||
hostname: nextcloud-app
|
||||
image: nextcloud
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- docker-traefik_front_network
|
||||
- back_network
|
||||
depends_on:
|
||||
- mariadb
|
||||
- redis
|
||||
volumes:
|
||||
- ./html:/var/www/html
|
||||
- ./custom_apps:/var/www/html/custom_apps
|
||||
- ./config:/var/www/html/config
|
||||
- ./data:/var/www/html/data
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- MYSQL_DATABASE=nextcloud_db
|
||||
- MYSQL_USER=nextcloud_user
|
||||
- MYSQL_PASSWORD=P@ssword!Here!123456
|
||||
- MYSQL_HOST=mariadb
|
||||
- REDIS_HOST=redis
|
||||
|
||||
GGGGG
|
||||
### mariadb
|
||||
mariadb:
|
||||
container_name: nextcloud-db
|
||||
hostname: nextcloud-db
|
||||
image: mariadb
|
||||
restart: unless-stopped
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
networks:
|
||||
- back_network
|
||||
volumes:
|
||||
- ./nextclouddb:/var/lib/mysql
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
||||
- MYSQL_PASSWORD=P@ssword!Here!123456
|
||||
- MYSQL_DATABASE=nextcloud_db
|
||||
- MYSQL_USER=nextcloud_user
|
||||
|
||||
# Téléchargement, Configuration et Lancement
|
||||
|
||||
## Téléchargement de Fichier-Stockage
|
||||
|
||||
Saisir la commande pour télécharger la source
|
||||
```bash
|
||||
git clone https://git.tips-of-mine.fr/Tips-Of-Mine/Docker.git
|
||||
```
|
||||
|
||||
Saisir la commande pour vous rendre dans le dossier
|
||||
```bash
|
||||
cd AAAAA\Fichier-Stockage
|
||||
```
|
||||
|
||||
## Modifier la configuration de Fichier-Stockage
|
||||
|
||||
Saisir la commande pour vous rendre dans le dossier
|
||||
```bash
|
||||
cd AAAAA\Fichier-Stockage
|
||||
```
|
||||
|
||||
Nous éditons le fichier de configuration
|
||||
```bash
|
||||
nano .env
|
||||
```
|
||||
|
||||
Nous modifions les variables dont nous avons besoin.
|
||||
|
||||
## Lancement de Fichier-Stockage
|
||||
|
||||
Pour utiliser Fichier-Stockage tout seul
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
Pour utiliser Fichier-Stockage avec Traefik
|
||||
```bash
|
||||
docker compose -f docker-compose-traefik.yml up -d
|
||||
```
|
||||
|
||||
# Utilisation
|
||||
|
||||
## Accueil
|
||||
|
||||
Ouvrir une page web avec l'url :
|
||||
Pour une utilisation tout seul
|
||||
|
||||
http://10.0.4.29:3000
|
||||
|
||||
Pour une utilisation avec Traefik
|
||||
|
||||
https://Fichier-Stockage.10.0.4.29.traefik.me`)"
|
||||
|
||||
|
||||
# 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>
|
||||
### redis
|
||||
redis:
|
||||
container_name: nextcloud-redis
|
||||
hostname: nextcloud-redis
|
||||
image: redis:alpine
|
||||
volumes:
|
||||
- ./redis:/data
|
||||
networks:
|
||||
- back_network
|
||||
|
@ -6,3 +6,60 @@ networks:
|
||||
|
||||
#### SERVICES
|
||||
services:
|
||||
### nextcloud
|
||||
nextcloud:
|
||||
container_name: nextcloud-app
|
||||
hostname: nextcloud-app
|
||||
image: nextcloud
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- back_network
|
||||
depends_on:
|
||||
- mariadb
|
||||
- redis
|
||||
ports:
|
||||
- 8081:80
|
||||
volumes:
|
||||
- ./html:/var/www/html
|
||||
- ./custom_apps:/var/www/html/custom_apps
|
||||
- ./config:/var/www/html/config
|
||||
- ./data:/var/www/html/data
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- MYSQL_DATABASE=nextcloud_db
|
||||
- MYSQL_USER=nextcloud_user
|
||||
- MYSQL_PASSWORD=P@ssword!Here!123456
|
||||
- MYSQL_HOST=mariadb
|
||||
- REDIS_HOST=redis
|
||||
|
||||
### mariadb
|
||||
mariadb:
|
||||
container_name: nextcloud-db
|
||||
hostname: nextcloud-db
|
||||
image: mariadb
|
||||
restart: unless-stopped
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
networks:
|
||||
- back_network
|
||||
volumes:
|
||||
- ./nextclouddb:/var/lib/mysql
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
||||
- MYSQL_PASSWORD=P@ssword!Here!123456
|
||||
- MYSQL_DATABASE=nextcloud_db
|
||||
- MYSQL_USER=nextcloud_user
|
||||
|
||||
### redis
|
||||
redis:
|
||||
container_name: nextcloud-redis
|
||||
hostname: nextcloud-redis
|
||||
image: redis:alpine
|
||||
volumes:
|
||||
- ./redis:/data
|
||||
networks:
|
||||
- back_network
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL :
|
||||
|
||||
# OwnCloud
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/timo-reymann/yal
|
||||
|
||||
# PSiTransfer
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL :
|
||||
|
||||
# PicoShare
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL :
|
||||
|
||||
# Pingvin
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/enchant97/hasty-paste
|
||||
|
||||
# Projectsend
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/cogentapps/chat-with-gpt
|
||||
|
||||
# Pydio Cells
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/hyperonym/basaran
|
||||
|
||||
# Pydio
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/deiucanta/chatpad
|
||||
|
||||
# Resilio Sync
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/FlowiseAI/Flowise
|
||||
|
||||
# Seafile
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/langflow-ai/langflow
|
||||
|
||||
# Syncthing
|
||||
|
@ -1,4 +1,4 @@
|
||||

|
||||

|
||||
URL : https://github.com/serge-chat/serge
|
||||
|
||||
# XBackBone
|
||||
|
Reference in New Issue
Block a user