This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
60 lines (56 loc) · 1.65 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
56
57
58
59
60
# Copyright (c) 2022, 2023 Humanitarian OpenStreetMap Team
# This file is part of tm-admin.
#
# tm-admin 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.
#
# tm-admin 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 tm-admin. If not, see <https:#www.gnu.org/licenses/>.
#
version: "3"
networks:
net:
name: tm-admin
services:
tm-admin:
image: "ghcr.io/hotosm/tm-admin:${TAG_OVERRIDE:-ci}"
build:
target: ci
container_name: tm-admin
volumes:
# Mount local package
- ./tm_admin:/usr/local/lib/python3.10/site-packages/tm_admin
# 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"
container_name: tm-admin-db
environment:
- POSTGRES_USER=tm
- POSTGRES_PASSWORD=dummycipassword
- POSTGRES_DB=tmadmin
ports:
- "5439:5432"
networks:
- net
restart: "unless-stopped"
healthcheck:
test: pg_isready -U ${TM_DB_USER:-tm} -d ${TM_DB_NAME:-tmadmin}
start_period: 5s
interval: 10s
timeout: 5s
retries: 3