mirror of
https://github.com/tiyn/wiki.git
synced 2026-02-22 10:24:47 +01:00
Structure:
- main wiki folder added - removed partition into software-types - thinking about partition by software/general
This commit is contained in:
37
wiki/todo-list.md
Normal file
37
wiki/todo-list.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# 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 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
|
||||
```
|
||||
Reference in New Issue
Block a user