Sign inSign up

tropicalalgae/tablog

By tropicalalgae

Updated 3 months ago

A lightweight, Markdown-driven personal blog.

Image
Web servers
1

1.3K

tropicalalgae/tablog repository overview

How to start?

Run as follow:

export TABLOG_PORT=10000
export TABLOG_MOUNT=./

docker create --name tablog_tmp tropicalalgae/tablog:latest

docker cp tablog_tmp:/app/config ${TABLOG_MOUNT:-$(pwd)}
docker cp tablog_tmp:/app/images ${TABLOG_MOUNT:-$(pwd)}
docker cp tablog_tmp:/app/markdowns ${TABLOG_MOUNT:-$(pwd)}

docker rm tablog_tmp

docker run -itd --name tablog \
--restart=unless-stopped \
-p ${TABLOG_PORT:-10000}:80 \
-v ${TABLOG_MOUNT:-$(pwd)}/config:/app/config \
-v ${TABLOG_MOUNT:-$(pwd)}/images:/app/images \
-v ${TABLOG_MOUNT:-$(pwd)}/markdowns:/app/markdowns \
tropicalalgae/tablog:latest

How to configure?

The blog requires two configuration files: /data/lqbot/config/app.json and /data/lqbot/config/home.md.

For more details, please refer to the GitHub repository:

https://github.com/tropical-algae/TABlog

Tag summary

Content type

Image

Digest

sha256:afa97076a

Size

32.4 MB

Last updated

3 months ago

docker pull tropicalalgae/tablog