forked from akash-network/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request akash-network#175 from minatofund/master
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Kanboard | ||
From the official Docker image: | ||
https://docs.kanboard.org/en/latest/admin_guide/docker.html | ||
|
||
Kanboard is a free and open source Kanban project management software. | ||
|
||
* Visualize your work | ||
* Limit your work in progress to focus on your goal | ||
* Drag and drop tasks to manage your project | ||
* Self-hosted | ||
* Super simple installation | ||
|
||
Learn more about Kanboard: https://kanboard.org | ||
|
||
The deploy.yaml uses the official Docker image to deploy a basic configuration of Kanboard on Akash. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
version: "2.0" | ||
|
||
services: | ||
web: | ||
image: kanboard/kanboard:v1.2.8 | ||
expose: | ||
- port: 80 | ||
as: 80 | ||
to: | ||
- global: true | ||
|
||
profiles: | ||
compute: | ||
web: | ||
resources: | ||
cpu: | ||
units: 0.1 | ||
memory: | ||
size: 512Mi | ||
storage: | ||
size: 512Mi | ||
placement: | ||
westcoast: | ||
attributes: | ||
datacenter: equinix-metal-ewr1 | ||
signedBy: | ||
anyOf: | ||
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63" | ||
pricing: | ||
web: | ||
denom: uakt | ||
amount: 10 | ||
|
||
deployment: | ||
web: | ||
westcoast: | ||
profile: web | ||
count: 1 |