Skip to content

sqawasmi/odoo-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Docker build for Odoo (OpenERP)

This repository provides Dockerfile for Odoo (formerly OpenERP) with SSH access.

Status

Odoo: v7 and v8

Ubuntu: 14.04

Built images are uploaded to index.docker.io

Usage:

docker run --name postgres -d shaker/postgresql

  • Run Odoo (this will auto link the previously created postgresql server, read about docker linking here)

docker run --name odoo --link postgres:db -p 8069:8069 -p 2222:22 -d shaker/odoo

  • If you already you have a specific configuration for openerp (for example, a different database connection), then you can mount it into docker, lets say your configuration is located under /home/user/openerp-conf/, you can run it by:

docker run --name odoo -v /home/user/openerp-conf:/etc/openerp -p 8069:8069 -d shaker/odoo

  • Browse http://<your server ip address>:8069/
  • Stop and start again
    • docker stop odoo
    • docker start odoo
  • ssh root password is odoo - you should change it if you exposed ssh port.
  • Odoo v8 is available uner shaker/odoo:8 tag.

About

Dockerfile for Odoo (formerly OpenERP) with SSH access

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages