老天 发布的文章

The official Odoo docker images have been published on docker.com

https://registry.hub.docker.com/_/odoo/

The docker file is maintained in this repository

https://github.com/odoo/docker

They depends on postgresql images, usage is pretty simple:

$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo --name db postgres
$ docker run -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

We will update the install/deploy documentation to mention them.

https://www.odoo.com/documentation/8.0/setup/install.html

参考自docker官方安装文档:
https://docs.docker.com/engine/installation/ubuntulinux/
摘录过程如下:
1、Ubuntu Trusty 14.04 (LTS)要求linux内核:
$ uname -r
3.11.0-15-generic
1、加gpg的key密钥:
方法有二个,一是从
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D ,
另一个是从:
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
哪个在天朝能用就用哪个吧。
3、加安装源:
sudo gedit /etc/apt/sources.list.d/docker.list

sudo vi /etc/apt/sources.list.d/docker.list

输入以下源:

deb https://apt.dockerproject.org/repo ubuntu-trusty main
保存并退出。
之后更新源:
apt-get update
然后,强制卸载旧的docker(如果有的话):
apt-get purge lxc-docker
清缓存:
apt-cache policy docker-engine
再次更新一下系统的安装更新源:
apt-get upgrade
有洁癖!
reboot
重启电脑服务器。
检查安装系统内核扩展依赖:
sudo apt-get install linux-image-extra-$(uname -r)

更新一下
sudo apt-get update

安装docker吧:
sudo apt-get install docker

sudo apt-get install lxc-docker

sudo apt-get install docker-engine

怎么玩dokcer呢:

启动docker服务(不加sudo权限则会报错出错可用sudo su):
sudo service docker start

开始docker的hello-world吧:

sudo docker run hello-world

完成。

参考:http://dockerpool.com/static/books/docker_practice/container/enter.html
摘录如下:

进入容器

在使用 -d 参数时,容器启动后会进入后台。 某些时候需要进入容器进行操作,有很多种方法,包括使用 docker attach 命令或 nsenter 工具等。
attach 命令

docker attach 是Docker自带的命令。下面示例如何使用该命令。

$ sudo docker run -idt ubuntu
243c32535da7d142fb0e6df616a3c3ada0b8ab417937c853a9e1c251f499f550
$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
243c32535da7 ubuntu:latest "/bin/bash" 18 seconds ago Up 17 seconds nostalgic_hypatia
$sudo docker attach nostalgic_hypatia
root@243c32535da7:/#

但是使用 attach 命令有时候并不方便。当多个窗口同时 attach 到同一个容器的时候,所有窗口都会同步显示。当某个窗口因命令阻塞时,其他窗口也无法执行操作了。
nsenter 命令
安装

nsenter 工具在 util-linux 包2.23版本后包含。 如果系统中 util-linux 包没有该命令,可以按照下面的方法从源码安装。

$ cd /tmp; curl https://www.kernel.org/pub/linux/utils/util-linux/v2.24/util-linux-2.24.tar.gz | tar -zxf-; cd util-linux-2.24;
$ ./configure --without-ncurses
$ make nsenter && sudo cp nsenter /usr/local/bin

使用

nsenter 可以访问另一个进程的名字空间。nsenter 要正常工作需要有 root 权限。 很不幸,Ubuntu 14.04 仍然使用的是 util-linux 2.20。安装最新版本的 util-linux(2.24)版,请按照以下步骤:

$ wget https://www.kernel.org/pub/linux/utils/util-linux/v2.24/util-linux-2.24.tar.gz; tar xzvf util-linux-2.24.tar.gz
$ cd util-linux-2.24
$ ./configure --without-ncurses && make nsenter
$ sudo cp nsenter /usr/local/bin

为了连接到容器,你还需要找到容器的第一个进程的 PID,可以通过下面的命令获取。

PID=$(docker inspect --format "{{ .State.Pid }}" )

通过这个 PID,就可以连接到这个容器:

$ nsenter --target $PID --mount --uts --ipc --net --pid

下面给出一个完整的例子。

$ sudo docker run -idt ubuntu
243c32535da7d142fb0e6df616a3c3ada0b8ab417937c853a9e1c251f499f550
$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
243c32535da7 ubuntu:latest "/bin/bash" 18 seconds ago Up 17 seconds nostalgic_hypatia
$ PID=$(docker-pid 243c32535da7)
10981
$ sudo nsenter --target 10981 --mount --uts --ipc --net --pid
root@243c32535da7:/#

更简单的,建议大家下载 .bashrc_docker,并将内容放到 .bashrc 中。

$ wget -P ~ https://github.com/yeasy/docker_practice/raw/master/_local/.bashrc_docker;
$ echo "[ -f ~/.bashrc_docker ] && . ~/.bashrc_docker" >> ~/.bashrc; source ~/.bashrc

这个文件中定义了很多方便使用 Docker 的命令,例如 docker-pid 可以获取某个容器的 PID;而 docker-enter 可以进入容器或直接在容器内执行命令。

$ echo $(docker-pid )
$ docker-enter ls

===================================
实际操作粘贴如下:

root@ubuntu:/tmp/util-linux-2.24/util-linux-2.24# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
69fca0fdb8b9 odoo:8.0 "/entrypoint.sh opene" 5 hours ago Up 5 hours 127.0.0.1:8069->8069/tcp, 8071/tcp odoo8
4b841f957014 6d6a71f8528e "/docker-entrypoint.s" 26 hours ago Up 26 hours 5432/tcp db
2a720ec044b4 b53cb035b2e4 "/dockerui" 27 hours ago Up 27 hours 0.0.0.0:9000->9000/tcp suspicious_swanson
============
得到69fca0fdb8b9

echo $(docker-pid 69fca0fdb8b9)
============
得到pid号为
root@ubuntu:/tmp/util-linux-2.24/util-linux-2.24# echo $(docker-pid 69fca0fdb8b9)
13538
============
root@ubuntu:/tmp/util-linux-2.24/util-linux-2.24# nsenter --target 13538 --mount --uts --ipc --net --pid
root@69fca0fdb8b9:/# ls
bin boot dev entrypoint.sh etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var
root@69fca0fdb8b9:/#
============================================================
完成!

一、Postgresql的docker如下:
https://github.com/docker-library/docs/tree/master/odoo
How to use this image

This image requires a running PostgreSQL server.
Start a PostgreSQL server

$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo --name db postgres

二、odoo的docker(odoo官方的方法如下:):
Start an Odoo instance

$ docker run -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

The alias of the container running Postgres must be db for Odoo to be able to connect to the Postgres server.
Stop and restart an Odoo instance

$ docker stop odoo
$ docker start -a odoo

Stop and restart a PostgreSQL server

When a PostgreSQL server is restarted, the Odoo instances linked to that server must be restarted as well because the server address has changed and the link is thus broken.

Restarting a PostgreSQL server does not affect the created databases.
Run Odoo with a custom configuration

The default configuration file for the server (located at /etc/odoo/openerp-server.conf) can be overriden at startup using volumes. Suppose you have a custom configuration at /path/to/config/openerp-server.conf, then

$ docker run -v /path/to/config:/etc/odoo -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

Please use this configuration template to write your custom configuration as we already set some arguments for running Odoo inside a Docker container.

You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword -- in the command-line, as follows

$ docker run -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo -- --db-filter=odoo_db_.*

Mount custom addons

You can mount your own Odoo addons within the Odoo container, at /mnt/extra-addons

$ docker run -v /path/to/addons:/mnt/extra-addons -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

Run multiple Odoo instances

$ docker run -p 127.0.0.1:8070:8069 --name odoo2 --link db:db -t odoo
$ docker run -p 127.0.0.1:8071:8069 --name odoo3 --link db:db -t odoo

Please note that for plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, Settings->Parameters->System Parameters (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069).
How to upgrade this image

Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image.

By default, Odoo 8.0 uses a filestore (located at /var/lib/odoo/filestore/) for attachments. You should restore this filestore in your new Odoo instance by running

$ docker run --volumes-from old-odoo -p 127.0.0.1:8070:8069 --name new-odoo --link db:db -t odoo

You can also simply prevent Odoo from using the filestore by setting the system parameter ir_attachment.location to db-storage in Settings->Parameters->System Parameters (requires technical features).

------------------

docker默认是pull的9.0的odoo,想用8.0的odoo参照以下:
1、方法一:使用别人现成的直接pull参https://hub.docker.com/r/yingliu4203/odoo8nightly/不详述。
2、主要讲此方法:用odoo官方的official-images,
用docker pull library/odoo@sha256:3adb97ccd938ac7e45fd0549b10eb57c3f52be31ef26b4d513441dfc4350425a
(命令在网址https://github.com/docker-library/docs/blob/master/odoo/tag-details.md#odoo90这里)
得到一个odoo官方的official-images,这里pull完成后得到一个tag标签是 odoo:8.0 的images镜像,然后用
命令docker run -d -p 127.0.0.1:8069:8069 --name odoo8 --link db:db -t odoo:8.0运行这个标签为odoo 8.0的images镜像即可。
3、打开浏览器http://127.0.0.1:8069查看是否成功运行docker odoo 8.0版本。
end.

参考docker官方文档 https://docs.docker.com/engine/installation/ubuntulinux/Docker

1.ubuntu 14 server 64bit install docker:http://blog.csdn.net/wangtaoking1/article/details/44179995

用root权限登入:

$ sudo su

内核支持

如果我们使用的系统是14.04之前的版本,我们需要先升级内核。

$ sudo apt-get update
$ sudo apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring

$ sudo reboot

Docker安装

首先需要安装apt-transport-https支持和Docker库的密钥。

$ sudo apt-get install apt-transport-https
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9

添加Docker的安装源安装最新版Docker。

$ sudo bash -c "echo deb https://get.docker.com/ubuntu docker main > /etc/apt/sources.list.d/docker.list"

$ apt-get update
$ apt-get install lxc-docker

下载Ubuntu镜像

下载Ubuntu镜像,然后启动一个Container测试是否安装成功。

$ docker pull ubuntu
$ docker run -i -t ubuntu bash

成功之后,运行exit即可退出docker。

1.odoo:https://github.com/docker-library/docs/blob/master/odoo/tag-details.md


odoo:8.0

$ docker pull library/odoo@sha256:3adb97ccd938ac7e45fd0549b10eb57c3f52be31ef26b4d513441dfc4350425a

Total Virtual Size: 799.3 MB (799315247 bytes)
Total v2 Content-Length: 260.9 MB (260859286 bytes)

odoo:9.0

$ docker pull library/odoo@sha256:96ee6f563259073b1ce9bc833364ff4cb3c194ecd9f6d91dc684cc6abcf07aae

Total Virtual Size: 778.6 MB (778565851 bytes)
Total v2 Content-Length: 256.6 MB (256561691 bytes)

3.docker postgres :


$ docker pull postgres
$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo --name db postgres

=======================================================
Start a PostgreSQL server

$ docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo --name db postgres

Start an Odoo instance

$ docker run -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

The alias of the container running Postgres must be db for Odoo to be able to connect to the Postgres server.
Stop and restart an Odoo instance

$ docker stop odoo
$ docker start -a odoo

Stop and restart a PostgreSQL server

When a PostgreSQL server is restarted, the Odoo instances linked to that server must be restarted as well because the server address has changed and the link is thus broken.

Restarting a PostgreSQL server does not affect the created databases.
Run Odoo with a custom configuration

The default configuration file for the server (located at /etc/odoo/openerp-server.conf) can be overriden at startup using volumes. Suppose you have a custom configuration at /path/to/config/openerp-server.conf, then

$ docker run -v /path/to/config:/etc/odoo -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

Please use this configuration template to write your custom configuration as we already set some arguments for running Odoo inside a Docker container.

You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword -- in the command-line, as follows

$ docker run -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo -- --db-filter=odoo_db_.*

Mount custom addons

You can mount your own Odoo addons within the Odoo container, at /mnt/extra-addons

$ docker run -v /path/to/addons:/mnt/extra-addons -p 127.0.0.1:8069:8069 --name odoo --link db:db -t odoo

Run multiple Odoo instances

$ docker run -p 127.0.0.1:8070:8069 --name odoo2 --link db:db -t odoo
$ docker run -p 127.0.0.1:8071:8069 --name odoo3 --link db:db -t odoo

Please note that for plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, Settings->Parameters->System Parameters (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069).
How to upgrade this image

Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image.

By default, Odoo 8.0 uses a filestore (located at /var/lib/odoo/filestore/) for attachments. You should restore this filestore in your new Odoo instance by running

$ docker run --volumes-from old-odoo -p 127.0.0.1:8070:8069 --name new-odoo --link db:db -t odoo

You can also simply prevent Odoo from using the filestore by setting the system parameter ir_attachment.location to db-storage in Settings->Parameters->System Parameters (requires technical features).