2020-01-31 20:52:59 +01:00
|
|
|
version: '3'
|
|
|
|
|
2021-01-26 08:32:26 +01:00
|
|
|
volumes:
|
|
|
|
pg_data: { }
|
|
|
|
|
2020-01-31 20:52:59 +01:00
|
|
|
services:
|
|
|
|
postgres:
|
2021-01-26 08:32:26 +01:00
|
|
|
image: "postgres:13.1-alpine"
|
|
|
|
restart: on-failure
|
2020-01-31 20:52:59 +01:00
|
|
|
volumes:
|
|
|
|
- pg_data:/var/lib/postgresql/data
|
|
|
|
env_file:
|
|
|
|
- pgsql-env
|
|
|
|
|
|
|
|
lemur:
|
|
|
|
# image: "netlix-lemur:latest"
|
2021-01-26 08:32:26 +01:00
|
|
|
restart: on-failure
|
|
|
|
build:
|
|
|
|
context: .
|
2020-01-31 20:52:59 +01:00
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
|
|
|
env_file:
|
|
|
|
- lemur-env
|
|
|
|
- pgsql-env
|
|
|
|
ports:
|
2021-01-26 08:32:26 +01:00
|
|
|
- 87:80
|
|
|
|
- 447:443
|
2020-01-31 20:52:59 +01:00
|
|
|
|
|
|
|
redis:
|
2021-01-26 08:32:26 +01:00
|
|
|
image: "redis:alpine3.12"
|
|
|
|
restart: on-failure
|