Skip to content
Snippets Groups Projects
Forked from PortalMEC / portalmec
1038 commits behind the upstream repository.
docker-compose.yml 201 B
web:
  build: .
  volumes:
    - .:/app
  ports:
    - "3000:3000"
  links:
    - db
    - redis
    - elasticsearch

db:
  image: postgres

redis:
  image: redis

elasticsearch:
  image: elasticsearch