Skip to content

Commit 429d3da

Browse files
committed
merge incoming
1 parent b55e7c7 commit 429d3da

File tree

4 files changed

+5
-15
lines changed

4 files changed

+5
-15
lines changed

docker/.env-template

Lines changed: 0 additions & 10 deletions
This file was deleted.

docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ Initialize metadata for files in webdav (once)
4040

4141
```bash
4242
docker run -it --rm -v$(pwd):/geodata pvgenuchten/geodatacrawler crawl-metadata -
43-
-dir=/geodata --mode=init
43+
-dir=/srv/data --mode=init
4444
```
4545
Update metadata in case new verions are uploaded
4646

4747
```bash
4848
docker run -it --rm -v$(pwd):/geodata pvgenuchten/geodatacrawler crawl-metadata -
49-
-dir=/geodata --mode=init
49+
-dir=/srv/data --mode=update
5050
```
5151

5252
## MapServer

docker/docker-compose-sqlite.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ services:
2626
- MS_ERRORFILE=stderr
2727
- MAPSERVER_CONFIG_FILE=/srv/data/ms.conf # config file is mounted into container
2828
- PROJ_DATA=/usr/local/share/proj
29-
- PROJ_LIB=/usr/local/share/proj
3029
volumes:
3130
- ./data:/srv/data
3231
labels:
@@ -44,8 +43,8 @@ services:
4443
container_name: "pycsw"
4544
volumes:
4645
- ./pycsw/pycsw.yml:/etc/pycsw/pycsw.yml
47-
- ./pycsw/_base.html:/usr/local/lib/python3.10/site-packages/pycsw/ogc/api/templates/_base.html # to override layout
48-
46+
- ./pycsw/_base.html:/usr/local/lib/python3.10/site-packages/pycsw/ogc/api/templates/landing_page.html # to override layout
47+
- ./pycsw/_base.html:/usr/local/lib/python3.10/site-packages/pycsw/ogc/api/templates/landing_page.html
4948
environment:
5049
# Configuration for the catalogue, see the pycsw.yml file how these values are used
5150
CAT_URL: http://${SDI_DOMAIN}

docker/docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ services:
4444
- ./pycsw/pycsw.yml:/etc/pycsw/pycsw.yml
4545
- ./pycsw/_base.html:/usr/local/lib/python3.10/site-packages/pycsw/ogc/api/templates/_base.html # to override layout
4646
- ./pycsw/landing_page.html:/usr/local/lib/python3.10/site-packages/pycsw/ogc/api/templates/landing_page.html # to override layout
47+
- ./data:/srv/data
4748
environment:
4849
# Configuration for the catalogue, see the pycsw.yml file how these values are used
4950
CAT_URL: http://${SDI_DOMAIN}

0 commit comments

Comments
 (0)