-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.dev.yml
36 lines (34 loc) · 1.08 KB
/
docker-compose.dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "3.5"
services:
app:
build:
context: .
args:
- ENV=dev
container_name: tile-cache_dev
restart: on-failure
volumes:
- $HOME/.aws:/root/.aws:ro
- ./app:/app/app
networks:
- gfw-data-api
environment:
- DB_HOST_RO=host.docker.internal
- DATABASE_RO=${GFW_DB_NAME}
- DB_USER_RO=${GFW_DB_USER_RO}
- DB_PASSWORD_RO=${GFW_DB_PASSWORD_RO}
- DB_PORT_RO=5432
- AWS_DEFAULT_PROFILE=${AWS_PROFILE}
- DATA_LAKE_BUCKET=${DATA_LAKE_BUCKET}
- LOG_LEVEL=debug
- RASTER_TILER_LAMBDA_NAME=test
- ENV=dev
- PLANET_API_KEY
- AWS_REQUEST_PAYER=requester
- 'DIST_ALERTS_FOREST_FILTERS={"tree_cover_loss": {"dataset": "umd_tree_cover_loss", "version": "v1.10.1"}, "tree_cover_height": {"dataset": "umd_tree_cover_height_2020", "version": "v2022"}, "tree_cover_density": {"dataset": "umd_tree_cover_density_2010", "version": "v1.6"}}'
ports:
- 8088:80
entrypoint: wait_for_postgres.sh /start-reload.sh
networks:
gfw-data-api:
name: gfw-data-api_dev_default