Skip to content
New issue

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

请问上传方式只能用这三种在线的方式,本地的存储用不了吗? #109

Open
YellowAndGreen opened this issue Aug 15, 2024 · 2 comments
Labels
🧐follow-up Extra attention is needed

Comments

@YellowAndGreen
Copy link

YellowAndGreen commented Aug 15, 2024

我使用下面的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
Copy link

非常感谢您提交了 issues,我们很高兴能够与您一起合作解决这个问题。我们将尽快进行审核,并会在 24 小时内回复您。在此期间,如有任何问题,请随时联系我们。再次感谢您的贡献!

@besscroft besscroft added the 🧐follow-up Extra attention is needed label Aug 15, 2024
@besscroft
Copy link
Owner

本地存储暂未支持。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🧐follow-up Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants