add raneto wiki
This commit is contained in:
parent
a51bedee8e
commit
fcd3b722c8
2 changed files with 26 additions and 0 deletions
|
@ -18,6 +18,7 @@ HOST_SELFOSS=selfoss
|
|||
HOST_BAIKAL=baikal
|
||||
HOST_PIGALLERY=pigallery
|
||||
HOST_WIKIJS=wikijs
|
||||
HOST_RANETO=raneto
|
||||
# other
|
||||
TZ=Europe/Paris
|
||||
BASIC_AUTH=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/
|
||||
|
@ -26,6 +27,8 @@ DOWNLOAD_HTTP_PORT=8000
|
|||
ROOT_INSTALL=/srv
|
||||
DB_ROOT_PASSWORD=rootpassword
|
||||
ADMIN_EMAIL=root@localdomain
|
||||
PUID=1000
|
||||
GUID=1000
|
||||
# seafile
|
||||
SEAFILE_ADMIN_PASSWORD=abc123456
|
||||
SEAFILE_REGULAR_USER=johndoe
|
||||
|
|
23
raneto/docker-compose.raneto.yml
Normal file
23
raneto/docker-compose.raneto.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
raneto:
|
||||
image: linuxserver/raneto
|
||||
container_name: raneto
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${GUID}
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${ROOT_INSTALL}/data/raneto:/config
|
||||
expose:
|
||||
- 3000
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- srv
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.wallabag.rule=Host(`${HOST_RANETO}.${DOMAIN}`)
|
||||
- traefik.http.routers.wallabag.entrypoints=websecure
|
||||
- traefik.http.routers.wallabag.tls=true
|
||||
- traefik.http.services.wallabag.loadbalancer.server.port=80
|
Loading…
Add table
Reference in a new issue