Update donetick/donetick.xml
This commit is contained in:
parent
9af1ae8bb5
commit
3c84fd5ad1
1 changed files with 17 additions and 24 deletions
|
@ -11,27 +11,20 @@
|
||||||
<Project>https://github.com/donetick/donetick</Project>
|
<Project>https://github.com/donetick/donetick</Project>
|
||||||
<Overview>Donetick is a self-hosted application - An open-source, user-friendly app for managing tasks and chores, featuring customizable options to help you and others stay organized</Overview>
|
<Overview>Donetick is a self-hosted application - An open-source, user-friendly app for managing tasks and chores, featuring customizable options to help you and others stay organized</Overview>
|
||||||
<Category>Productivity:</Category>
|
<Category>Productivity:</Category>
|
||||||
<WebUI>http://[IP]:[PORT:8085]</WebUI>
|
<WebUI>http://[IP]:[PORT:8000]</WebUI>
|
||||||
<TemplateURL/>
|
<TemplateURL/>
|
||||||
<Icon>https://raw.githubusercontent.com/donetick/donetick/main/web/public/logo.svg</Icon>
|
<Icon>https://raw.githubusercontent.com/donetick/donetick/main/web/public/logo.svg</Icon>
|
||||||
<ExtraParams/>
|
<ExtraParams/>
|
||||||
<CPUset/>
|
<CPUset/>
|
||||||
<DonateText/>
|
<DonateText/>
|
||||||
<DonateLink/>
|
<DonateLink/>
|
||||||
<Description>Donetick is a self-hosted application - An open-source, user-friendly app for managing tasks and chores, featuring customizable options to help you and others stay organized. Features include:
|
<Description>Donetick is a self-hosted application - An open-source, user-friendly app for managing tasks and chores, featuring customizable options to help you and others stay organized. Requires selfhosted.yaml configuration file.</Description>
|
||||||
|
|
||||||
- Task Management
|
|
||||||
- User Management
|
|
||||||
- Chore Scheduling
|
|
||||||
- Progress Tracking
|
|
||||||
- Customizable Categories
|
|
||||||
</Description>
|
|
||||||
|
|
||||||
<Networking>
|
<Networking>
|
||||||
<Mode>bridge</Mode>
|
<Mode>bridge</Mode>
|
||||||
<Publish>
|
<Publish>
|
||||||
<Port>
|
<Port>
|
||||||
<HostPort>8085</HostPort>
|
<HostPort>8000</HostPort>
|
||||||
<ContainerPort>8000</ContainerPort>
|
<ContainerPort>8000</ContainerPort>
|
||||||
<Protocol>tcp</Protocol>
|
<Protocol>tcp</Protocol>
|
||||||
</Port>
|
</Port>
|
||||||
|
@ -40,12 +33,12 @@
|
||||||
|
|
||||||
<Data>
|
<Data>
|
||||||
<Volume>
|
<Volume>
|
||||||
<HostDir>/mnt/user/appdata/donetick/database</HostDir>
|
<HostDir>/mnt/user/appdata/Donetick/database</HostDir>
|
||||||
<ContainerDir>/data</ContainerDir>
|
<ContainerDir>/usr/src/app/data</ContainerDir>
|
||||||
<Mode>rw</Mode>
|
<Mode>rw</Mode>
|
||||||
</Volume>
|
</Volume>
|
||||||
<Volume>
|
<Volume>
|
||||||
<HostDir>/mnt/user/appdata/donetick</HostDir>
|
<HostDir>/mnt/user/appdata/Donetick</HostDir>
|
||||||
<ContainerDir>/config</ContainerDir>
|
<ContainerDir>/config</ContainerDir>
|
||||||
<Mode>rw</Mode>
|
<Mode>rw</Mode>
|
||||||
</Volume>
|
</Volume>
|
||||||
|
@ -58,7 +51,7 @@
|
||||||
</Variable>
|
</Variable>
|
||||||
<Variable>
|
<Variable>
|
||||||
<Name>DT_SQLITE_PATH</Name>
|
<Name>DT_SQLITE_PATH</Name>
|
||||||
<Value>/data/donetick.db</Value>
|
<Value>/usr/src/app/data/donetick.db</Value>
|
||||||
</Variable>
|
</Variable>
|
||||||
</Environment>
|
</Environment>
|
||||||
|
|
||||||
|
@ -67,35 +60,35 @@
|
||||||
<Config
|
<Config
|
||||||
Name="WebUI Port"
|
Name="WebUI Port"
|
||||||
Target="8000"
|
Target="8000"
|
||||||
Default="8085"
|
Default="8000"
|
||||||
Mode="tcp"
|
Mode="tcp"
|
||||||
Description="Container Port: 8000"
|
Description="Container Port: 8000"
|
||||||
Type="Port"
|
Type="Port"
|
||||||
Display="always"
|
Display="always"
|
||||||
Required="true"
|
Required="true"
|
||||||
Mask="false">8085</Config>
|
Mask="false">8000</Config>
|
||||||
|
|
||||||
<Config
|
<Config
|
||||||
Name="Database Path"
|
Name="Database Path"
|
||||||
Target="/data"
|
Target="/usr/src/app/data"
|
||||||
Default="/mnt/user/appdata/donetick/database"
|
Default="/mnt/user/appdata/Donetick/database"
|
||||||
Mode="rw"
|
Mode="rw"
|
||||||
Description="Container Path: /data"
|
Description="Container Path: /usr/src/app/data"
|
||||||
Type="Path"
|
Type="Path"
|
||||||
Display="always"
|
Display="always"
|
||||||
Required="true"
|
Required="true"
|
||||||
Mask="false">/mnt/user/appdata/donetick/database</Config>
|
Mask="false">/mnt/user/appdata/Donetick/database</Config>
|
||||||
|
|
||||||
<Config
|
<Config
|
||||||
Name="Config Path"
|
Name="Config Path"
|
||||||
Target="/config"
|
Target="/config"
|
||||||
Default="/mnt/user/appdata/donetick"
|
Default="/mnt/user/appdata/Donetick"
|
||||||
Mode="rw"
|
Mode="rw"
|
||||||
Description="Container Path: /config"
|
Description="Container Path: /config"
|
||||||
Type="Path"
|
Type="Path"
|
||||||
Display="always"
|
Display="always"
|
||||||
Required="true"
|
Required="true"
|
||||||
Mask="false">/mnt/user/appdata/donetick</Config>
|
Mask="false">/mnt/user/appdata/Donetick</Config>
|
||||||
|
|
||||||
<Config
|
<Config
|
||||||
Name="Environment Mode"
|
Name="Environment Mode"
|
||||||
|
@ -111,11 +104,11 @@
|
||||||
<Config
|
<Config
|
||||||
Name="SQLite Database Path"
|
Name="SQLite Database Path"
|
||||||
Target="DT_SQLITE_PATH"
|
Target="DT_SQLITE_PATH"
|
||||||
Default="/data/donetick.db"
|
Default="/usr/src/app/data/donetick.db"
|
||||||
Mode=""
|
Mode=""
|
||||||
Description="Path to SQLite database file inside the container"
|
Description="Path to SQLite database file inside the container"
|
||||||
Type="Variable"
|
Type="Variable"
|
||||||
Display="always"
|
Display="always"
|
||||||
Required="true"
|
Required="true"
|
||||||
Mask="false">/data/donetick.db</Config>
|
Mask="false">/usr/src/app/data/donetick.db</Config>
|
||||||
</Container>
|
</Container>
|
Loading…
Reference in a new issue