mirror of
https://github.com/karust/openserp.git
synced 2026-08-05 16:53:54 +08:00
18 lines
449 B
YAML
18 lines
449 B
YAML
version: '3'
|
|
|
|
services:
|
|
openserp:
|
|
container_name: serp
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 7000:7000
|
|
command: serve -l
|
|
#volumes:
|
|
# - ./config.yaml:/usr/src/app/config.yaml
|
|
environment:
|
|
OPENSERP_APP_HOST: "0.0.0.0"
|
|
OPENSERP_APP_PORT: 7000
|
|
OPENSERP_BAIDU_RATE_REQUESTS: 6 # Number of requests per Minute
|
|
OPENSERP_BAIDU_RATE_BURST: 2 # Number of non-ratelimited requests per Minute
|
|
|