dokuwiki
This commit is contained in:
parent
6cc3b78649
commit
29e253e948
3 changed files with 39 additions and 46 deletions
38
dokuwiki/docker-compose.dokuwiki.yml
Normal file
38
dokuwiki/docker-compose.dokuwiki.yml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
|
||||
seafcli-notes:
|
||||
image: snegov/seafile-client
|
||||
container_name: seafcli-notes
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- LIBRARY_ID=${SEAFILE_NOTES_LIBRARY}
|
||||
- SERVER_HOST=${HOST_SEAFILE}.${DOMAIN}
|
||||
- SERVER_PORT=443
|
||||
- USERNAME=${SEAFILE_REGULAR_USER}
|
||||
- PASSWORD=${SEAFILE_REGULAR_PASSWORD}
|
||||
- DATA_DIR=/library
|
||||
networks:
|
||||
- srv
|
||||
volumes:
|
||||
- ${ROOT_INSTALL}/data/sync_notes:/library
|
||||
|
||||
dokuwiki:
|
||||
image: 'docker.io/bitnami/dokuwiki:20200729-debian-10'
|
||||
container_name: dokuwiki
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- 8080
|
||||
volumes:
|
||||
- ${ROOT_INSTALL}/data/sync_notes/Notes:/bitnami/dokuwiki
|
||||
networks:
|
||||
- srv
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.dokuwiki.rule=Host(`${HOST_DOKUWIKI}.${DOMAIN}`)
|
||||
- traefik.http.routers.dokuwiki.entrypoints=websecure
|
||||
- traefik.http.routers.dokuwiki.tls=true
|
||||
- traefik.http.services.dokuwiki.loadbalancer.server.port=8080
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue