Skip to content

Commit 7ee6b10

Browse files
authored
ADD: Odoo SDL to Awesome Akash (akash-network#203)
1 parent 6a4fe2a commit 7ee6b10

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ Awesome DeFi apps you can deploy on Akash
9191
- [Drupal](drupal)
9292
- [Wiki.js](wikijs)
9393

94+
### Bussiness
95+
96+
- [Odoo](odoo)
9497

9598
### Games
9699

odoo/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Odoo
2+
=======
3+
Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.
4+
5+
Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.
6+
7+
More details [https://www.odoo.com/](https://www.odoo.com/)

odoo/deploy.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
version: "2.0"
3+
4+
services:
5+
db:
6+
image: postgres
7+
environment:
8+
- POSTGRES_PASSWORD=odoo
9+
- POSTGRES_USER=odoo
10+
- POSTGRES_DB=postgres
11+
12+
odoo:
13+
image: odoo
14+
depends_on:
15+
- db
16+
expose:
17+
- port: 8069
18+
to:
19+
- global: true
20+
tty: true
21+
environment:
22+
- HOST=db
23+
- USER=odoo
24+
- PASSWORD=odoo
25+
26+
profiles:
27+
compute:
28+
db:
29+
resources:
30+
cpu:
31+
units: 1
32+
memory:
33+
size: 1Gi
34+
storage:
35+
size: 1Gi
36+
odoo:
37+
resources:
38+
cpu:
39+
units: 1
40+
memory:
41+
size: 1Gi
42+
storage:
43+
size: 1Gi
44+
placement:
45+
westcoast:
46+
attributes:
47+
organization: ovrclk.com
48+
signedBy:
49+
anyOf:
50+
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63"
51+
pricing:
52+
db:
53+
denom: uakt
54+
amount: 5000
55+
odoo:
56+
denom: uakt
57+
amount: 5000
58+
59+
deployment:
60+
db:
61+
westcoast:
62+
profile: db
63+
count: 1
64+
odoo:
65+
westcoast:
66+
profile: odoo
67+
count: 1

0 commit comments

Comments
 (0)