tiddlywiki icon indicating copy to clipboard operation
tiddlywiki copied to clipboard

docker-compose example is a little bit confusing

Open motey opened this issue 4 years ago • 0 comments

Hi there, i am sure there is reason behind it, but i could not start via the docker-compose example.

https://github.com/neechbear/tiddlywiki#docker-compose

There is a part missing of the compose file, a random port declared i dont know the purpose of and the volume deceleration is missing.

a more helpful example would be

version: "3.9"
services:
  tiddlywiki:
    container_name: tiddlywiki
    image: nicolaw/tiddlywiki
    volumes:
      - tiddlywiki:/home/diab/tiddlywiki_data_safe
    ports:
      - "8080:8080"
volumes:
  tiddlywiki: null

motey avatar Nov 17 '21 10:11 motey