feat: add docker-compose setup

This commit is contained in:
Karol Sójko
2020-08-10 08:51:56 +02:00
parent 3fa0d6cdba
commit b2fde84f8b
2 changed files with 31 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
services:
app:
build:
context: .
env_file: .env
restart: unless-stopped
ports:
- ${PORT}:3001
volumes:
- .:/app