mirror of
https://github.com/m0wer/tiddlywiki-docker.git
synced 2026-01-23 02:24:25 +00:00
added guide for docker compose
This PR adds a guide to the readme to use this project with `docker compose`, which is a useful way to keep all the docker settings, environment variables and volume data in a folder.
This commit is contained in:
parent
24beb3bc3d
commit
2652f4e6fa
1 changed files with 39 additions and 0 deletions
39
README.md
39
README.md
|
|
@ -65,3 +65,42 @@ serving TiddlyWiki. For example by passing `-e PATH_PREFIX=\wiki` option in
|
|||
configure the client as well.
|
||||
|
||||
[path-prefix-note]: https://tiddlywiki.com/static/Using%2520a%2520custom%2520path%2520prefix%2520with%2520the%2520client-server%2520edition.html
|
||||
|
||||
## Docker Compose
|
||||
|
||||
To keep all the docker settings, environment variables and volume data in a folder you can use `docker compose`.
|
||||
|
||||
Create a folder for the project:
|
||||
|
||||
```
|
||||
mkdir my-tiddlywiki-docker
|
||||
cd my-tiddlywiki-docker
|
||||
```
|
||||
|
||||
Create a folder for the data:
|
||||
|
||||
```
|
||||
mkdir tiddlywiki
|
||||
```
|
||||
|
||||
Create `docker-compose.yml` with the following contents:
|
||||
|
||||
```
|
||||
version: '3'
|
||||
services:
|
||||
tiddlywiki:
|
||||
image: m0wer/tiddlywiki
|
||||
volumes:
|
||||
- ./tiddlywiki:/var/lib/tiddlywiki
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8080:8080
|
||||
#environment:
|
||||
# - DEBUG_LEVEL=debug
|
||||
# - PATH_PREFIX=\wiki
|
||||
# - NODE_MEM=128
|
||||
# - USERNAME=test
|
||||
# - PASSWORD=test
|
||||
```
|
||||
|
||||
Then run `docker compose up -d`.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue