These are some guides for various use.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Todo-List
## Setup Server
### Docker
The official container and documentation was made by [prologic](https://hub.docker.com/r/prologic/todo).
#### Volumes
Set the following volumes with the -v tag.
| 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
```#!/bin/sh
docker stop tododocker rm tododocker pull prologic/tododocker run --name todo \ -p 8000:8000 \ --restart unless-stopped \ -v todo:/go/src/todo/todo.db \ -d prologic/todo```
|