1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/docker-compose.production.yml

25 lines
487 B
YAML

version: '3'
services:
redis:
restart: always
image: redis:3.0
expose:
- "6379"
elasticsearch:
image: elasticsearch:2.3
restart: always
expose:
- "9200"
app:
environment:
CACHE_URL: redis://redis
ELASTICSEARCH_URL: http://elasticsearch:9200
command: "waitress-server --port 8000 project.wsgi:application"
links:
- redis:redis
- elasticsearch:elasticsearch
depends_on:
- redis
- elasticsearch