There was an error while loading. Please reload this page.
1 parent 54141df commit 1c6c2a7Copy full SHA for 1c6c2a7
Course/lesson-7.md
@@ -29,6 +29,10 @@
29
* Searching, testing and debugging is more difficult
30
* Sharing resources is more difficult
31
32
-### Monorepo - Start services locally and get to know the Application:
33
-
34
-*
+### Deploy Micro Services:
+* `.deploy script: docker network create micro_service || true &&`
+ * 1st time creates network and after creating next line fails. Use "|| true" not to fail
35
+* `docker network ls` - to check network in terminal CI
36
+ * `4c6d1367fe99 micro_service bridge local`
37
+* `docker inspect aa0194f7032d` - network config
38
+* `docker inspect aa0194f7032d | grep Network` - NetworkMode & NetworkSettings of frontend container aa0194f7032d
0 commit comments