Skip to content

Commit 639178c

Browse files
committed
Use -dbURI parameter
1 parent 723633d commit 639178c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docker-compose/ckan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- default
1515
ports:
1616
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
17-
command: -dbhost mongo-db -logLevel DEBUG -noCache
17+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
1818
healthcheck:
1919
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
2020
interval: 5s

docker-compose/elasticsearch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

docker-compose/hdfs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

docker-compose/mongodb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

docker-compose/multiple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

docker-compose/mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- default
3232
ports:
3333
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
34-
command: -dbhost mongo-db -logLevel DEBUG -noCache
34+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3535
healthcheck:
3636
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3737
interval: 5s

docker-compose/postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
- default
3333
ports:
3434
- "${ORION_PORT}:${ORION_PORT}" # localhost:1026
35-
command: -dbhost mongo-db -logLevel DEBUG -noCache
35+
command: -dbURI mongodb://mongo-db -logLevel DEBUG -noCache
3636
healthcheck:
3737
test: curl --fail -s http://orion:${ORION_PORT}/version || exit 1
3838
interval: 5s

0 commit comments

Comments
 (0)