mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
16 lines
397 B
YAML
16 lines
397 B
YAML
# 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
|