diff options
| author | Stephen Davis <[email protected]> | 2022-01-20 18:24:01 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-20 15:24:01 -0800 |
| commit | 47dfe491b4c9adc5ce9eb2bc49b96c00b235fdd7 (patch) | |
| tree | 2574078b8b062369bab1af90da31b7f0b3b3abe1 /public/v4/apps/traggo.yml | |
| parent | 35266adc56100a230e0b8536b85ef7ed26e131a6 (diff) | |
| download | caprover-one-click-apps-47dfe491b4c9adc5ce9eb2bc49b96c00b235fdd7.tar.gz caprover-one-click-apps-47dfe491b4c9adc5ce9eb2bc49b96c00b235fdd7.zip | |
Added new app (Netbox) (#605)
* Added new app (Netbox)
Added new application--Netbox is an IP address and datacenter infrastructure management platform originally developed by engineers at Digital Ocean. It is particularly helpful for anyone managing medium to large networks. Further documentation is linked in the deployment information, the script has been formatted using Prettier, and its associated logo has been formatted to match Caprover's layout.
* Updated formatting per Caprover .prettierrc
* Added tag-based timer app (traggo)
Traggo is a tag-based time tracking tool. In Traggo there are no tasks, only tagged time spans.
With tags, Traggo tries to be as customizable as possible, ie-if you work on different projects you could add a `project` tag. If you like to see statistics from the different things you do, you could add tags with values like `email`, `programming`, `meeting`. You can do it just as you like.
Diffstat (limited to 'public/v4/apps/traggo.yml')
| -rw-r--r-- | public/v4/apps/traggo.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/public/v4/apps/traggo.yml b/public/v4/apps/traggo.yml new file mode 100644 index 0000000..f39d659 --- /dev/null +++ b/public/v4/apps/traggo.yml @@ -0,0 +1,39 @@ +captainVersion: 4 +services: + $$cap_appname: + volumes: + - $$cap_appname-data:/opt/traggo/data + restart: always + environment: + TRAGGO_DEFAULT_USER_NAME: $$cap_traggo_user + TRAGGO_DEFAULT_USER_PASS: $$cap_traggo_pw + caproverExtra: + containerHttpPort: '3030' + dockerfileLines: + - FROM traggo/server:$$cap_traggo_version +caproverOneClickApp: + variables: + - id: $$cap_traggo_version + label: Traggo Version Tag + description: 'Check out their Docker page for the valid tags: https://hub.docker.com/r/traggo/server/tags' + defaultValue: '0.2.1' + validRegex: /^([^\s^\/])+$/ + - id: $$cap_traggo_user + label: Default User's Username + validRegex: /^([a-zA-Z0-9])+$/ + - id: $$cap_traggo_pw + label: Default User's Password + validRegex: /^(\w|[^\s"])+$/ + instructions: + start: | + Traggo is a tag-based time tracking tool. In Traggo there are no tasks, only tagged time spans. This container is multiarch and supports `amd64`, `386`, `ppc641e`, `s390x`, `arm64`, and `armv7` (Rasberry Pi). + + Enter your desired app name, username, and password and click on next. It will take about a minute for the process to finish. + end: | + Traggo has been deployed and can be accessed at **$$cap_appname.$$cap_root_domain**. Enabling https is recommended. + + The `$$cap_appname-data` volume contains the sqlite database. + displayName: 'Traggo' + isOfficial: true + description: Traggo is a simple tag-based time tracking tool. In Traggo there are no tasks, only tagged time spans. + documentation: Taken from https://traggo.net/install/ |
