Nextcloud working + remove Filerun
This commit is contained in:
parent
3148a60795
commit
66056c2de9
|
@ -6,11 +6,6 @@ PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
|||
PGID=1000
|
||||
PUID=1000
|
||||
|
||||
# Filerun
|
||||
MYSQL_ROOT_PASSWORD=your_mysql_root_password
|
||||
MYSQL_USER=your_filerun_username
|
||||
MYSQL_PASSWORD=your_filerun_password
|
||||
|
||||
# Nextcloud
|
||||
NEXTCLOUD_ADMIN_USER=admin
|
||||
NEXTCLOUD_ADMIN_PASSWORD=nextcloud_admin_password
|
||||
|
|
|
@ -12,9 +12,8 @@ seedbox and personal media server.
|
|||
| Bazaar | bazaar.yourdomain.com |
|
||||
| Jackett | jackett.yourdomain.com |
|
||||
| JDownloader | jdownloader.yourdomain.com |
|
||||
| Filerun | explore.yourdomain.com |
|
||||
| Tautulli (plexPy) | tautulli.yourdomain.com |
|
||||
| NextCloud (WIP) | nextcloud.yourdomain.com |
|
||||
| NextCloud | nextcloud.yourdomain.com |
|
||||
| Portainer | portainer.yourdomain.com |
|
||||
|
||||
The front-end reverse proxy (Traefik) routes based on the lowest level subdomain (e.g.
|
||||
|
|
|
@ -37,44 +37,6 @@ services:
|
|||
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||
- 'traefik.enable=true'
|
||||
|
||||
filerun-db:
|
||||
image: mariadb:10.1
|
||||
restart: always
|
||||
networks:
|
||||
- web
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
|
||||
MYSQL_USER: ${MYSQL_USER}
|
||||
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
|
||||
MYSQL_DATABASE: filerun
|
||||
labels:
|
||||
- 'traefik.enable=false'
|
||||
|
||||
filerun-web:
|
||||
image: afian/filerun
|
||||
restart: always
|
||||
networks:
|
||||
- web
|
||||
environment:
|
||||
FR_DB_HOST: filerun-db
|
||||
FR_DB_PORT: 3306
|
||||
FR_DB_NAME: filerun
|
||||
FR_DB_USER: ${MYSQL_USER}
|
||||
FR_DB_PASS: ${MYSQL_PASSWORD}
|
||||
depends_on:
|
||||
- filerun-db
|
||||
links:
|
||||
- filerun-db:db
|
||||
volumes:
|
||||
- /data/config/filerun/web:/var/www/html
|
||||
- alldata:/user-files
|
||||
labels:
|
||||
- 'traefik.backend=filerun'
|
||||
- 'traefik.port=80'
|
||||
- 'traefik.frontend.rule=Host:explore.${TRAEFIK_DOMAIN}'
|
||||
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||
- 'traefik.enable=true'
|
||||
|
||||
plex:
|
||||
image: linuxserver/plex
|
||||
restart: always
|
||||
|
|
Loading…
Reference in New Issue