unignore docker-compose

This commit is contained in:
41666 2020-12-02 18:22:18 -05:00
parent c9cb4c95bc
commit d3394412db
2 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View file

@ -4,7 +4,6 @@ bazel-roleypoly
bazel-testlogs
node_modules
.env
docker-compose.yaml
/target
*.log
storybook-static

16
docker-compose.yaml Normal file
View file

@ -0,0 +1,16 @@
# This is the Docker Compose for setting up a local dev environment.
# Production uses PaaS equivalents in Google Cloud
version: '3.8'
services:
firestore:
image: mtlynch/firestore-emulator
environment:
FIRESTORE_PROJECT_ID: roleypoly-00000000
ports:
- 6691:8080
redis:
image: redis:5-alpine
ports:
- 6692:6379