1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-03 15:27:45 +02:00
wiki/wiki/docker/prologic_-_todo.md
2024-11-26 06:15:03 +01:00

1.1 KiB

prologic - todo

This is a Docker container for a todo-manager. The official container and documentation was made by prologic.

Set-up

Create the file rebuild.sh. Change the settings according to your needs and run ./rebuild.sh afterwards.

Volumes

Set the following volumes with the -v tag.

Outside mount/volume name Container mount Description
todo /go/src/todo/todo.db Database for todo list

Ports

Set the following ports with the -p tag.

Container Port Recommended outside port Protocol Description
8000 8000 TCP WebUI

rebuild.sh

#!/bin/sh
docker stop todo
docker rm todo
docker pull prologic/todo
docker run --name todo \
    -p 8000:8000 \
    --restart unless-stopped \
    -v todo:/go/src/todo/todo.db \
    -d prologic/todo