mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
* attempt at fixing dockerfile that works with yarn workspaces and respects yarn.lock * run corepack yarn * update Dockerfile references * remove unneccesary yarn plugin import * Apply suggestions from code review Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
19 lines
407 B
YAML
19 lines
407 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
uppy:
|
|
image: transloadit/companion
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
- NODE_ENV=development
|
|
volumes:
|
|
- ./:/app
|
|
- /app/node_modules
|
|
- /mnt/uppy-server-data:/mnt/uppy-server-data
|
|
ports:
|
|
- "3020:3020"
|
|
command: "/app/src/standalone/start-server.js --config nodemon.json"
|
|
env_file:
|
|
- .env
|