difftreelog
updating docker-compose
in: master
3 files changed
docker-compose-tests.ymldiffbeforeafterboth21 build:21 build:22 context: ./22 context: ./23 dockerfile: Dockerfile-tests23 dockerfile: Dockerfile-tests24 volumes:25 - ./tests/src/config_docker.ts:/nft_parachain/tests/src/config.ts24 networks:26 networks:25 - node_test_network27 - node_test_network26 depends_on:28 depends_on:tests/src/config.tsdiffbeforeafterboth--- a/tests/src/config.ts
+++ b/tests/src/config.ts
@@ -6,7 +6,7 @@
import process from 'process';
const config = {
- substrateUrl: process.env.substrateUrl || 'ws://172.17.0.1:9944'
+ substrateUrl: process.env.substrateUrl || 'ws://127.0.0.1:9944'
}
export default config;
\ No newline at end of file
tests/src/config_docker.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/config_docker.ts
@@ -0,0 +1,12 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
+import process from 'process';
+
+const config = {
+ substrateUrl: process.env.substrateUrl || 'ws://172.17.0.1:9944'
+}
+
+export default config;
\ No newline at end of file