added prod docker config
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.development
|
||||
container_name: mydrive_development
|
||||
env_file:
|
||||
- ./backend/config/.env.development
|
||||
volumes:
|
||||
- .:/usr/app-development
|
||||
- /usr/app-development/node_modules
|
||||
- ${FS_DIRECTORY}:/data
|
||||
ports:
|
||||
- "${HTTP_PORT:-3000}:3000"
|
||||
- "${HTTPS_PORT:-8080}:8080"
|
||||
- "5173:5173"
|
||||
environment:
|
||||
- DOCKER=true
|
||||
Reference in New Issue
Block a user