docker icon indicating copy to clipboard operation
docker copied to clipboard

Results 159 docker issues
Sort by recently updated
recently updated
newest added

Hello, I have an odoo 11ce instance running on a VPS and I use the auto_backup module to backup the database. When I try to restore the database on my...

How do you set the timezone for the docker image? It is currently set to UTC.

Added symbolic link between /var/log/odoo/odoo-server.log and /dev/stdout so logs can be handled with docker log collector.

I receive **Database odoo not initialized** errot once I access Odoo 14.0 web entry right after fresh containers are up. On the browser it shows up as "Server Internal Error"...

### Steps to reproduce 1. Start postgresql server: `docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:13` 2. Start odoo: `docker run -p 8069:8069 --name odoo --link...

Hi, I am using docker-compose: ``` services: web: platform: linux/x86_64 restart: always image: odoo:13.0 #command: -d dev depends_on: - db ports: - "8069:8069" - "8072:8072" volumes: - odoo-web-data:/var/lib/odoo #- ./odoo:/usr/lib/python3/dist-packages/odoo...

2021-06-09 23:05:34,858 1 WARNING CARE_DOCKER_DEMO odoo.addons.base.models.assetsbundle: Error: Invalid CSS after "#": expected "}", was "#! /usr/bin/perl" on line 1 of print >> #! /usr/bin/perl ^ This error occured while compiling...

when `ps -axf` on host, it should display postgresql connection string, this is a very bad idea. this should cause the whole database be delete by the bad man I...

The [DockerHub README](https://registry.hub.docker.com/_/odoo/#:~:text=agpl%20) claims that Odoo uses the AGPL license ... ![image](https://user-images.githubusercontent.com/47901316/127897125-a59a3d96-cbd1-44cf-a516-7a16754002f9.png) ... but the actual community repo's [LICENSE](https://github.com/odoo/odoo/blob/14.0/LICENSE) file claims LGPL. ![image](https://user-images.githubusercontent.com/47901316/127897331-7308165b-8a8c-4b10-a54b-1c3b91c759d4.png) **Which license does Odoo actually use?**

Hello, i'm using this compose file: ``` version: '2' services: web: image: odoo:12.0 depends_on: - db ports: - "8069:8069" volumes: - /data/odoo/odoo-web-data:/var/lib/odoo - /data/odoo/config:/etc/odoo - /data/odoo/addons:/mnt/extra-addons environment: VIRTUAL_HOST: odoo.mydomain.de VIRTUAL_PORT:...