Initial Flitter Commit

This commit is contained in:
garrettmills
2020-04-16 15:38:01 -05:00
parent 49911f1bed
commit dbdaf775df
41 changed files with 3873 additions and 613 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: "3"
services:
db:
image: mongo:latest
container_name: db
ports:
- 27017:27017
volumes:
- dbdata1:/data
web:
image: node:11.14-stretch
command: bash -c "cd /opt/flitterapp && yarn install && ./flitter up"
depends_on:
- db
ports:
- 8000:8000
volumes:
- ./:/opt/flitterapp
volumes:
dbdata1:
driver: local