Laurent Goderre
Laurent Goderre
@zZHorizonZz I personally think it would be good to not include yarn in this variant by default since it's new and wouldn't break anything but I could see people wanting...
This doesn't seem to work. I get: ``` ERROR ? odoo.modules.loading: Database customdb not initialized, you can force it with `-i base` ```
It seems like it's failing on SSL and looks a lot like this issue here: https://stackoverflow.com/a/72229296
@yosifkit that's what I thought too but his issue is with the Debian variant, not the alpine one
This looks very similar to #967
Duplicate of #1048
I'm not getting this behavior. ``` % docker run --rm node:18.19.0-alpine3.17 -e 'Promise.reject("test")' node:internal/process/promises:288 triggerUncaughtException(err, true /* fromPromise */); ^ [UnhandledPromiseRejection: This error originated either by throwing inside of an...
I think it had some value but maybe not as much as a schema migration tool like liquibase.
The following works for me: ``` services: postgres: image: postgres:latest environment: POSTGRES_USER: user POSTGRES_PASSWORD: pass POSTGRES_DB: db healthcheck: test: pg_isready interval: 60s retries: 3 start_period: 10s timeout: 10s ``` ```...
Running that command doesn't give you real result because you are overwriting the command so the postgres doesn't start. A better way would be ``` docker run --name my-db -e...