mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
feat: add Odoo 19 blueprint (#391)
This commit is contained in:
committed by
GitHub
parent
e61f9020db
commit
cabfdf2eec
26
blueprints/odoo_19/docker-compose.yml
Normal file
26
blueprints/odoo_19/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: odoo:19.0
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
environment:
|
||||||
|
- HOST=db
|
||||||
|
- USER=odoo
|
||||||
|
- PASSWORD=odoo
|
||||||
|
volumes:
|
||||||
|
- odoo-web-data:/var/lib/odoo
|
||||||
|
- ../files/config:/etc/odoo
|
||||||
|
- ../files/addons:/mnt/extra-addons
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: postgres:17
|
||||||
|
environment:
|
||||||
|
- POSTGRES_DB=postgres
|
||||||
|
- POSTGRES_USER=odoo
|
||||||
|
- POSTGRES_PASSWORD=odoo
|
||||||
|
volumes:
|
||||||
|
- odoo-db-data:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
odoo-web-data:
|
||||||
|
odoo-db-data:
|
||||||
BIN
blueprints/odoo_19/odoo.png
Normal file
BIN
blueprints/odoo_19/odoo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 84 KiB |
11
blueprints/odoo_19/template.toml
Normal file
11
blueprints/odoo_19/template.toml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
[variables]
|
||||||
|
main_domain = "${domain}"
|
||||||
|
|
||||||
|
[config]
|
||||||
|
env = {}
|
||||||
|
mounts = []
|
||||||
|
|
||||||
|
[[config.domains]]
|
||||||
|
serviceName = "web"
|
||||||
|
port = 8_069
|
||||||
|
host = "${main_domain}"
|
||||||
15
meta.json
15
meta.json
@@ -3499,6 +3499,21 @@
|
|||||||
"cms"
|
"cms"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "odoo_19",
|
||||||
|
"name": "Odoo",
|
||||||
|
"version": "19.0",
|
||||||
|
"description": "Odoo is a free and open source business management software that helps you manage your company's operations.",
|
||||||
|
"logo": "odoo.png",
|
||||||
|
"links": {
|
||||||
|
"github": "https://github.com/odoo/odoo",
|
||||||
|
"website": "https://odoo.com/",
|
||||||
|
"docs": "https://www.odoo.com/documentation/"
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
"crm"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "omni-tools",
|
"id": "omni-tools",
|
||||||
"name": "Omni-Tools",
|
"name": "Omni-Tools",
|
||||||
|
|||||||
Reference in New Issue
Block a user