mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 10:25:33 +00:00
19 lines
408 B
YAML
19 lines
408 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
|