build(docker): added Dockerfiles for local/prod (prod untested)

Also adds docker-compose.yml for development
This commit is contained in:
sct
2020-08-22 10:24:37 +00:00
parent 533ede1ab7
commit f2487d920f
5 changed files with 45 additions and 25 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3'
services:
overseerr:
build:
context: .
dockerfile: Dockerfile.local
ports:
- 3000:3000
volumes:
- .:/app:rw,cached
- /app/node_modules
- /app/.next