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
我使用下面的docker脚本部署之后,看日志是正常连接数据库的,同时数据库的表也是正常创建的:
version: "3" networks: # 自定义网络(默认桥接), 不使用links通信 pic: driver: bridge services: postgresql: image: postgres:16.3-alpine container_name: postgresql hostname: postgresql restart: always networks: - pic environment: - POSTGRES_USER=666 - POSTGRES_PASSWORD=666 - POSTGRES_DB=picimpact ports: - "127.0.0.1:5432:5432" volumes: - /home/picimpact_db:/var/lib/postgresql/data expose: - "5432" picimpact: image: besscroft/picimpact:latest container_name: picimpact-test ports: - "3000:3000" networks: - pic environment: - DATABASE_URL=postgres://666:666@postgresql:5432/picimpact - AUTH_SECRET=jghjhfgjfjfjfgjhfghfjfj
The text was updated successfully, but these errors were encountered:
非常感谢您提交了 issues,我们很高兴能够与您一起合作解决这个问题。我们将尽快进行审核,并会在 24 小时内回复您。在此期间,如有任何问题,请随时联系我们。再次感谢您的贡献!
Sorry, something went wrong.
本地存储暂未支持。
No branches or pull requests
我使用下面的docker脚本部署之后,看日志是正常连接数据库的,同时数据库的表也是正常创建的:
The text was updated successfully, but these errors were encountered: