docker-odoo/8.0/run.sh
2015-02-27 15:21:32 +01:00

11 lines
304 B
Bash
Executable File

#!/bin/bash
# set odoo database host, port, user and password
export PGHOST=$DB_PORT_5432_TCP_ADDR
export PGPORT=$DB_PORT_5432_TCP_PORT
export PGUSER=$DB_ENV_POSTGRES_USER
export PGPASSWORD=$DB_ENV_POSTGRES_PASSWORD
# start Odoo
exec /usr/bin/openerp-server --config=/etc/odoo/openerp-server.conf "$@"