mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
36 lines
568 B
Markdown
36 lines
568 B
Markdown
|
tiddlywiki
|
||
|
==========
|
||
|
|
||
|
## docker-compose.yml
|
||
|
|
||
|
```yaml
|
||
|
tiddlywiki:
|
||
|
image: vimagick/tiddlywiki
|
||
|
command: >
|
||
|
username=admin
|
||
|
password=admin
|
||
|
writers=(authenticated)
|
||
|
readers=(anon)
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
volumes:
|
||
|
- ./data:/data
|
||
|
restart: unless-stopped
|
||
|
```
|
||
|
|
||
|
## up and running
|
||
|
|
||
|
```bash
|
||
|
# initialize wiki
|
||
|
$ docker-compose run --rm tiddlywiki . --init server
|
||
|
|
||
|
# serves wiki over http
|
||
|
$ docker-compose up -d
|
||
|
|
||
|
# open wiki in browser
|
||
|
$ curl http://127.0.0.1:8080/login-basic
|
||
|
|
||
|
# authorized access
|
||
|
$ curl -u admin:admin http://127.0.0.1:8080/status
|
||
|
```
|