mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-27 13:15:23 +00:00
bluespice
This commit is contained in:
parent
2fadc29174
commit
0c052e5cab
@ -287,6 +287,7 @@ So, without further ado, here's the current list:
|
|||||||
|
|
||||||
# Wiki
|
# Wiki
|
||||||
- [Confluence](apps/wiki/confluence.md)
|
- [Confluence](apps/wiki/confluence.md)
|
||||||
|
- [Bluespice free](apps/wiki/bluespice.md)
|
||||||
- [Bookstack](apps/wiki/bookstack.md)
|
- [Bookstack](apps/wiki/bookstack.md)
|
||||||
- [Wiki.js](apps/wiki/wikijs.md)
|
- [Wiki.js](apps/wiki/wikijs.md)
|
||||||
- [XWiki](apps/wiki/xwiki.md)
|
- [XWiki](apps/wiki/xwiki.md)
|
||||||
|
33
apps/wiki/bluespice.md
Normal file
33
apps/wiki/bluespice.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Bluespice free
|
||||||
|
|
||||||
|
- Terrible UX, unintuitive and just ugly
|
||||||
|
- Even with the domain set up - it sometimes redirect to `localhost`
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
- [Homepage](https://bluespice.com/products/bluespice-free/)
|
||||||
|
- [DockerHub repo](https://hub.docker.com/r/bluespice/bluespice-free)
|
||||||
|
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
```yml
|
||||||
|
---
|
||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
bluespice:
|
||||||
|
image: bluespice/bluespice-free
|
||||||
|
container_name: bluespice
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Dublin
|
||||||
|
- bs_lang=en
|
||||||
|
- bs_url=https://bluespice.example.com
|
||||||
|
ports:
|
||||||
|
- 3123:80
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
```
|
||||||
|
|
||||||
|
### Login with
|
||||||
|
- username: WikiSysop
|
||||||
|
- password: PleaseChangeMe
|
Loading…
Reference in New Issue
Block a user