Follow me on Twitter, happy to take your suggestions on topics or improvements /Chris
This article is part of a series:
Docker - from the begin...
For further actions, you may consider blocking this person and/or reporting abuse
The article link for Microservice over Monolithic Architecture argument is broken now. This is the working link.
Just pointing out 2 misstypings :)
should be
and
should be
Thank you for making this article better. It should be corrected now :)
Great article. Thanks for making it!
Thank you so much for writing this! I am using docker for first time at new job and this explains to me what I'm doing when I paste in my go-to commands.
hi Mic. Really appreciate you writing this comment. This is why I wrote this..
I'd just like to point out that the article is inconsistent about the
.yaml
and.yml
extension in thedocker-compose
file.Thanks a lot :)
Where do I can get the source code for inventory service or shall I just copy some part from product-service where I just get the hello world message?
Here it is
```const express = require('express')
const app = express()
const port = process.env.PORT || 3000;
app.get('/', (req, res) => res.send('Hello inventory service'))```
Thank you Chris, you are quick😊 I did something similar. Both of my containers are up and running but don't know why I can not access the (localhost:external_port) from my host machine !!
are you on windows or mac?
I am using ubuntu.
I think there is some mismatch with numbering and parts (2 is part IV) 🤔
yea , it's how the
series
tag is created in dev.to.. No idea how to change. Hopefully, you find your way based on title.Thanks I just finished part 1 and now reading this amazing one
I created this repo to summarize the series
github.com/MoatazAbdAlmageed/Learn...