We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry for the simple question, hopefully the answer is also simple.
If I want to use the standard PG 9.5 image but the only thing I want to change is to set fsync=off, how/where should I configure that?
fsync=off
I'm hoping there's a way to do this without completely recreating the entrypoint or conf files.
The text was updated successfully, but these errors were encountered:
I want to change is to set fsync=off, how/where should I configure that?
I think it is similar solution than the -c shared_buffers=256MB example here : #54 (comment)
-c shared_buffers=256MB
Sorry, something went wrong.
Thanks, that works. For docker-compose, you can simply add this to the command: line, e.g. command: -c fsync=off
docker-compose
command:
command: -c fsync=off
@rarkins Awesome, thanks for sharing. Know about a way to do something similar with github actions?
No branches or pull requests
Sorry for the simple question, hopefully the answer is also simple.
If I want to use the standard PG 9.5 image but the only thing I want to change is to set
fsync=off
, how/where should I configure that?I'm hoping there's a way to do this without completely recreating the entrypoint or conf files.
The text was updated successfully, but these errors were encountered: