Docker-compose MemoryError

I am trying to run odoo on vps with 512 MB of RAM. I am using docker. When I start the containers with a regular docker, everything is fine. I run like this: postgres container:

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

container with an ood:

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

No errors, everything works fine. Then I exit, delete these containers and try to do the same with docker-compose:

 app: image: odoo tty: true ports: - "8069:8069" volumes: - ./addons:/mnt/extra-addons:ro,Z links: - db:db db: image: postgres environment: POSTGRES_USER: odoo POSTGRES_PASSWORD: odoo 

And when I start, I get a MemoryError:

 root@ubuntu-512mb-fra1-01 :~/odoo# docker-compose -f odoo.yml up Creating odoo_db_1 Creating odoo_app_1 Attaching to odoo_db_1, odoo_app_1 db_1 | The files belonging to this database system will be owned by user "postgres". db_1 | This user must also own the server process. db_1 | db_1 | The database cluster will be initialized with locale "en_US.utf8". db_1 | The default database encoding has accordingly been set to "UTF8". db_1 | The default text search configuration will be set to "english". db_1 | db_1 | Data page checksums are disabled. db_1 | db_1 | fixing permissions on existing directory /var/lib/postgresql/data ... ok db_1 | creating subdirectories ... ok db_1 | selecting default max_connections ... 100 db_1 | selecting default shared_buffers ... 128MB db_1 | selecting dynamic shared memory implementation ... posix db_1 | creating configuration files ... ok Traceback (most recent call last): File "/usr/local/bin/docker-compose", line 9, in <module> load_entry_point('docker-compose==1.9.0', 'console_scripts', 'docker-compose')() File "/usr/local/lib/python2.7/dist-packages/compose/cli/main.py", line 65, in main command() File "/usr/local/lib/python2.7/dist-packages/compose/cli/main.py", line 117, in perform_command handler(command, command_options) File "/usr/local/lib/python2.7/dist-packages/compose/cli/main.py", line 862, in up log_printer.run() File "/usr/local/lib/python2.7/dist-packages/compose/cli/log_printer.py", line 87, in run for line in consume_queue(queue, self.cascade_stop): File "/usr/local/lib/python2.7/dist-packages/compose/cli/log_printer.py", line 229, in consume_queue raise item.exc MemoryError 

I tried to explain the reason for Google, but did not find anything.

+5
source share
2 answers

A command that runs json buffers so that it can break it correctly. Buffering may use too much memory.

Instead, you can try:

 docker-compose -f odoo.yml up -d 

This will work "separately." You can try running docker-compose logs to view the logs.

+5
source

You can try to remove tty:true in odoo.yml .

From https://github.com/docker/compose/issues/3106

-1
source

Source: https://habr.com/ru/post/1259895/


All Articles