我尝试使用针对docker的配置来构建映像。我使用“ docker build”成功构建了映像。在克隆目录中或使用“ docker-compose up”。
我运行带有--env-file标志的容器,该容器提供了所有必需的环境变量,并且也成功运行,没有任何问题。 我还发现uppy服务器正在n端口3020上运行。不幸的是,当我继续执行客户端index.html文件时,我尝试将文件上传到已配置的特定目录,并且出现错误404 ...上传错误文件。
这是用于在uppy服务器上命中端点的index.html脚本
<script type="text/javascript">
const uppy = Uppy.Core({ autoProceed: true })
uppy.use(Uppy.Dashboard, { target: '#drag-drop-area', inline: true, height: 450 })
uppy.use(Uppy.Tus, { endpoint: 'http://localhost:3020/' })
</script>
这是 docker配置文件 config.docker,当我捆绑容器时,我添加了--env-file config.docker来设置ENV变量
# Rename this file to env.sh, it will be kept out of Git.
# So suitable for adding secret keys and such
NODE_ENV="${NODE_ENV:-development}"
DEPLOY_ENV="${DEPLOY_ENV:-production}"
DEBUG="frey:*"
FREY_DOMAIN="localost:3020"
# FREY_ENCRYPTION_SECRET="***"
UPPYSERVER_PORT=3020
UPPY_ENDPOINT="localhost"
# for whitelisting multiple clients
UPPY_ENDPOINTS=""
# inform uppy client about the server host name
# UPPYSERVER_REDIS_URL=""
# UPPYSERVER_DATADIR="/mnt/uppy-server-data"
UPPYSERVER_DOMAIN="localhost"
UPPYSERVER_SELF_ENDPOINT="${UPPYSERVER_DOMAIN}"
# valid server hostnames for oauth handling
UPPYSERVER_DOMAINS="localhost:3020,playground.test/public/uppy/,playground.test,http://localhost:3020/,http://0.0.0.0:3020/"
UPPYSERVER_PATH=""
UPPYSERVER_IMPLICIT_PATH=""
UPPYSERVER_SECRET="mysecret"
UPPYSERVER_PROTOCOL="http"
# single oauth redirect handler for multiple server instances
UPPYSERVER_OAUTH_DOMAIN=""
UPPYSERVER_DROPBOX_KEY="***"
UPPYSERVER_DROPBOX_SECRET="***"
UPPYSERVER_GOOGLE_KEY="*****"
UPPYSERVER_GOOGLE_SECRET="*****"
UPPYSERVER_INSTAGRAM_KEY="***"
UPPYSERVER_INSTAGRAM_SECRET="***"
UPPYSERVER_AWS_KEY="***"
UPPYSERVER_AWS_SECRET="***"
UPPYSERVER_AWS_BUCKET="***"
UPPYSERVER_AWS_ENDPOINT="https://s3.{region}.amazonaws.com"
UPPYSERVER_AWS_REGION="***"
UPPYSERVER_UPLOAD_URLS="http://localhost:3020/,https://localhost:3020/"