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
I installed with the steps in the wiki for Docker. The container runs, but it is returning 502 Bad Gateway.
The text was updated successfully, but these errors were encountered:
I had this problem. Turned out the PostgreSQL container was restarting continuously because of an SELinux denial.
The fix:
diff --git a/docker-compose.yml b/docker-compose.yml index c4901648..7b48e1af 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: - back env_file: docker/.env volumes: - - ./postgres:/var/lib/postgresql/data + - ./postgres:/var/lib/postgresql/data:z volumes: rails-assets:
Found via Docker PostgreSQL issue 116.
Sorry, something went wrong.
Note as well that is can take a couple of minutes for the assets to be compiled and the website to become available.
had to remove the "/data" and force 9.3 version.
postgres: image: postgres:9.3 restart: always networks: - back env_file: docker/.env volumes: - ./postgres:/var/lib/postgresql
No branches or pull requests
I installed with the steps in the wiki for Docker. The container runs, but it is returning 502 Bad Gateway.
The text was updated successfully, but these errors were encountered: