mirror of
https://github.com/odoocker/odoocker
synced 2025-11-04 23:29:19 +01:00
Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b513e2af7a | ||
|
|
5062e3cd42 | ||
|
|
1d3c88bdd2 | ||
|
|
b4dd2d8e7d | ||
|
|
26b8b3d9a8 | ||
|
|
528ea7fd6f | ||
|
|
11313d644c | ||
|
|
88f2c9e102 | ||
|
|
68bbdc470f | ||
|
|
b0ec685cd0 | ||
|
|
07db2e2bf0 | ||
|
|
235b727525 | ||
|
|
566c52813a | ||
|
|
cf7611fa2c | ||
|
|
d1fcce4d13 | ||
|
|
ee25e26dd7 | ||
|
|
3622713fb2 | ||
|
|
13a05185b7 | ||
|
|
97180b920e | ||
|
|
ece5ccae8e | ||
|
|
a0e574ba32 | ||
|
|
476bf78846 | ||
|
|
298778bdb5 | ||
|
|
e9e6f02839 |
@@ -150,7 +150,7 @@ MINIO_PROFILES="minio"
|
|||||||
PGADMIN_PROFILES="pgadmin"
|
PGADMIN_PROFILES="pgadmin"
|
||||||
|
|
||||||
# Containers' Tags
|
# Containers' Tags
|
||||||
ODOO_TAG=16.0
|
ODOO_TAG=13.0
|
||||||
POSTGRES_TAG=16.1
|
POSTGRES_TAG=16.1
|
||||||
KEYDB_TAG=latest
|
KEYDB_TAG=latest
|
||||||
MINIO_TAG=latest
|
MINIO_TAG=latest
|
||||||
@@ -202,7 +202,7 @@ DEBUG_INTERFACE=${HTTP_INTERFACE}
|
|||||||
HTTP_PORT=8069
|
HTTP_PORT=8069
|
||||||
DEBUG_PORT=8070
|
DEBUG_PORT=8070
|
||||||
XMLRPCS_PORT=8071
|
XMLRPCS_PORT=8071
|
||||||
GEVENT_PORT=8072
|
LONGPOLLING_PORT=8072
|
||||||
HTTP_ENABLE=True
|
HTTP_ENABLE=True
|
||||||
XMLRPCS=True
|
XMLRPCS=True
|
||||||
PROXY_MODE=True
|
PROXY_MODE=True
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ server {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
location /websocket {
|
location /longpolling {
|
||||||
proxy_pass http://odoo:8072;
|
proxy_pass http://odoo:8072;
|
||||||
proxy_redirect off;
|
proxy_redirect off;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
|||||||
@@ -64,8 +64,8 @@ xmlrpcs_interface = ${XMLRPCS_INTERFACE}
|
|||||||
; --xmlrpcs-port
|
; --xmlrpcs-port
|
||||||
xmlrpcs_port = ${XMLRPCS_PORT}
|
xmlrpcs_port = ${XMLRPCS_PORT}
|
||||||
|
|
||||||
; --gevent-port | --longpolling-port (deprecated)
|
; --longpolling-port
|
||||||
gevent_port = ${GEVENT_PORT}
|
longpolling_port = ${LONGPOLLING_PORT}
|
||||||
|
|
||||||
; --no-http | --no-xmlrpc
|
; --no-http | --no-xmlrpc
|
||||||
http_enable = ${HTTP_ENABLE}
|
http_enable = ${HTTP_ENABLE}
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
|
jinja2
|
||||||
|
sortedcontainers
|
||||||
debugpy
|
debugpy
|
||||||
websocket-client
|
websocket-client
|
||||||
redis
|
redis
|
||||||
boto3
|
boto3
|
||||||
sentry-sdk==1.9.0 # Fixed because Odoo depends on urllib3==1.26.5
|
sentry-sdk==1.9.0 # Fixed because Odoo depends on urllib3==1.26.5
|
||||||
|
aiohttp
|
||||||
|
|||||||
Reference in New Issue
Block a user