-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
55 lines (52 loc) · 1.58 KB
/
docker-compose.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright (c) 2022, 2023 Humanitarian OpenStreetMap Team
# This file is part of osm-rawdata.
#
# osm-rawdata is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# osm-rawdata is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with osm-rawdata. If not, see <https:#www.gnu.org/licenses/>.
#
networks:
net:
name: osm-rawdata
services:
rawdata:
image: "ghcr.io/hotosm/osm-rawdata:${TAG_OVERRIDE:-ci}"
build:
target: ci
container_name: osm-rawdata
volumes:
# Mount local package
- ./osm_rawdata:/usr/local/lib/python3.10/site-packages/osm_rawdata
# Mount local tests
- ./tests:/data/tests
depends_on:
db:
condition: service_healthy
networks:
- net
restart: "unless-stopped"
command: "pytest"
db:
image: "postgis/postgis:14-3.4-alpine"
environment:
- POSTGRES_USER=fmtm
- POSTGRES_PASSWORD=testpass
- POSTGRES_DB=underpass
networks:
- net
restart: "unless-stopped"
healthcheck:
test: pg_isready -U fmtm -d underpass
start_period: 5s
interval: 10s
timeout: 5s
retries: 3