Files
myDrive/docker-compose-dev.yml
T
2025-03-01 06:36:49 +00:00

15 lines
365 B
YAML

version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: mydrive
volumes:
- /path/to/data:/data/
- /path/to/temp:/temp/
ports:
- "${HTTP_PORT:-3000}:3000"
- "${HTTPS_PORT:-8080}:8080"
env_file:
- .env # Copy .env.example to .env.development or .env and fill in the values