Skip to content

Commit 7aa32ac

Browse files
committed
Add comments in docker-compose file
1 parent 4259d00 commit 7aa32ac

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

docker-compose.yml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: '3'
22
services:
3+
######################################################
4+
### OSM API and Database section
5+
######################################################
36
web:
47
image: osmseed-web:v1
58
build:
@@ -22,6 +25,9 @@ services:
2225
- ./postgres-data:/var/lib/postgresql/data
2326
env_file:
2427
- ./.env
28+
######################################################
29+
### Planet replication section
30+
######################################################
2531
planet-dump:
2632
image: osmseed-planet-dump:v1
2733
build:
@@ -39,6 +45,9 @@ services:
3945
./start.sh"
4046
env_file:
4147
- ./.env
48+
######################################################
49+
### OSM Database backup and restore section
50+
######################################################
4251
db-backup-restore:
4352
image: osmseed-backup-restore:v1
4453
build:
@@ -54,6 +63,9 @@ services:
5463
./start.sh"
5564
env_file:
5665
- ./.env
66+
######################################################
67+
### OSM minute replication files section
68+
######################################################
5769
replication-job:
5870
image: osmseed-replication-job:v1
5971
build:
@@ -71,6 +83,9 @@ services:
7183
./start.sh"
7284
env_file:
7385
- ./.env
86+
######################################################
87+
### OSM data restoring into the database
88+
######################################################
7489
populate-apidb:
7590
image: osmseed-populate-apidb:v1
7691
build:
@@ -95,6 +110,9 @@ services:
95110
dockerfile: Dockerfile
96111
env_file:
97112
- ./.env
113+
######################################################
114+
### OSM full planet replication
115+
######################################################
98116
full-history:
99117
image: osmseed-full-history:v1
100118
build:
@@ -113,9 +131,9 @@ services:
113131
./start.sh"
114132
env_file:
115133
- ./.env
116-
#=========================================================================
117-
# OMS-SEED-TILER section
118-
#=========================================================================
134+
######################################################
135+
### Tiler server(tegola), Database and imposm section
136+
######################################################
119137
tiler-db:
120138
image: osmseed-tiler-db:v1
121139
build:
@@ -162,9 +180,9 @@ services:
162180
sleep 100;
163181
echo Starting tiles server!;
164182
./start.sh"
165-
#=========================================================================
166-
# NOMINATIM section
167-
#=========================================================================
183+
######################################################
184+
### Nominatim section
185+
######################################################
168186
nominatim-db:
169187
image: nominatim-db:v1
170188
build:

0 commit comments

Comments
 (0)