Skip to content

Commit 51018b8

Browse files
authored
fix invalid volume mount paths for docker-compose examples
1 parent d8ffbfd commit 51018b8

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

docker/docker-compose.yml.example

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ services:
2424
- mongodb
2525
volumes:
2626
# Weaver configuration
27-
- ./components/weaver/config/weaver/weaver.ini:/opt/local/src/weaver/config/weaver.ini
28-
- ./components/weaver/config/weaver/data_sources.yml:/opt/local/src/weaver/config/data_sources.yml
29-
- ./components/weaver/config/weaver/request_options.yml:/opt/local/src/weaver/config/request_options.yml
30-
- ./components/weaver/config/weaver/wps_processes.yml:/opt/local/src/weaver/config/wps_processes.yml
27+
- ./config/weaver.ini.example:/opt/local/src/weaver/config/weaver.ini
28+
- ./config/data_sources.yml.example:/opt/local/src/weaver/config/data_sources.yml
29+
- ./config/request_options.yml.example:/opt/local/src/weaver/config/request_options.yml
30+
- ./config/wps_processes.yml.example:/opt/local/src/weaver/config/wps_processes.yml
3131
# WARNING: see detail in 'worker' definition
3232
- /tmp/weaver/wps-outputs:/tmp/weaver/wps-outputs
3333
networks:
@@ -57,9 +57,10 @@ services:
5757
- mongodb
5858
volumes:
5959
# Weaver configuration
60-
- ./config/weaver.ini:/opt/local/src/weaver/config/weaver.ini
61-
- ./config/data_sources.yml:/opt/local/src/weaver/config/data_sources.yml
62-
- ./config/request_options.yml:/opt/local/src/weaver/config/request_options.yml
60+
- ./config/weaver.ini.example:/opt/local/src/weaver/config/weaver.ini
61+
- ./config/data_sources.yml.example:/opt/local/src/weaver/config/data_sources.yml
62+
- ./config/request_options.yml.example:/opt/local/src/weaver/config/request_options.yml
63+
- ./config/wps_processes.yml.example:/opt/local/src/weaver/config/wps_processes.yml
6364
# WARNING:
6465
# If you need to provide some credentials to provide access to protected docker repositories
6566
- ~/.docker/config.json:/root/.docker/config.json

0 commit comments

Comments
 (0)