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
When trying to use Postgres as a driver, I receive info that there is no pgsql as a driver docker-compose.yml
version: '3.9' services: mailcarrier: image: mailcarrier/mailcarrier restart: always ports: - '80:80' - '8080:8080' - '443:443' environment: SSL_MODE: mixed MAILCARRIER_AUTH_GUARD: auth:sanctum APP_NAME: XXXMailcarrier APP_ENV: local APP_KEY: base64:XXX APP_DEBUG: true DB_CONNECTION: pgsql DB_HOST: localhost DB_PORT: 5432 DB_DATABASE: XXX DB_USERNAME: XXX DB_PASSWORD: XXX
Whne trying mysql it does work. But hosting separate MySQL database is too expensive for my project.
The text was updated successfully, but these errors were encountered:
Fix: (simirlar to #32 (comment))
FROM mailcarrier/mailcarrier:latest RUN apt update && apt install php8.2-pgsql -y EXPOSE 80 EXPOSE 443 COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 5555
Sorry, something went wrong.
Hey! Thank you for the issue and the solution. Probably I should add built-in the support for Postgres in the base Mailcarrier docker image
No branches or pull requests
When trying to use Postgres as a driver, I receive info that there is no pgsql as a driver
docker-compose.yml
Whne trying mysql it does work. But hosting separate MySQL database is too expensive for my project.
The text was updated successfully, but these errors were encountered: