mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
28 lines
537 B
YAML
28 lines
537 B
YAML
# This is the Docker Compose for setting up a local dev environment.
|
|
version: '3.8'
|
|
|
|
services:
|
|
worker:
|
|
image: node:14
|
|
volumes:
|
|
- '.:/src'
|
|
ports:
|
|
- 6609:6609
|
|
links:
|
|
- redis
|
|
working_dir: /src
|
|
command: yarn worker
|
|
|
|
ui:
|
|
image: node:14
|
|
volumes:
|
|
- '.:/src'
|
|
ports:
|
|
- 6601:6601
|
|
working_dir: /src
|
|
command: yarn ui
|
|
|
|
redis:
|
|
image: redis:6-alpine
|
|
ports:
|
|
- 6379
|