You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
version: '2'
|
|
|
|
services:
|
|
|
|
server:
|
|
|
|
image: hastic/server:latest
|
|
|
|
build:
|
|
|
|
dockerfile: server/Dockerfile
|
|
|
|
context: .
|
|
|
|
environment:
|
|
|
|
HASTIC_API_KEY: ${HASTIC_API_KEY}
|
|
|
|
ZMQ_CONNECTION_STRING: ${ZMQ_CONNECTION_STRING}
|
|
|
|
HASTIC_WEBHOOK_URL: ${HASTIC_WEBHOOK_URL}
|
|
|
|
HASTIC_WEBHOOK_TYPE: ${HASTIC_WEBHOOK_TYPE}
|
|
|
|
ports:
|
|
|
|
- 8000:8000
|
|
|
|
volumes:
|
|
|
|
- data-volume:/var/www/data
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
analytics:
|
|
|
|
image: hastic/analytics:latest
|
|
|
|
build: analytics
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
data-volume:
|