minhajuddin
At our company we have found a smooth and robust deployment strategy with AWS ECS and I am writing a small book on this subject. I am going to document all the aspects of a deployment using a simple app as an example. I’d love to know your thoughts on things that should be included in this book. I am using Leanpub to set up and publish the book: Elixir Deployments on AWS ECS [Leanpub PDF/iPad/Kindle]
Do you think this would be a good resource? Are there any topics that you’d like to see in the book?
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
xpg
As someone running an Elixir system on AWS ECS, I definitely find a book on the topic interesting. When I started a bit over a year ago working on our system, I basically had to figure out everything on my own.
Recommendations and good/bad experiences would have helped me a lot.
Currently, we are running isolated Elixir nodes, but in the near future I am looking into clustering things. If you have any experiences to share regarding that, I would be really thrilled to read about it. Other interesting topics would be which CI setup to use (I use Jenkins), and how to setup and maintain the AWS infrastructure (I use Ansible).
minhajuddin
We use Jenkins too, our setup is mostly independent of jenkins as everything runs inside a docker container, the tests run using docker-compose. I am planning on adding a chapter on clustering too
bmitch
Sounds very interesting. I’ve signed up for the notification on leanpub for the book!
seanwash
I would find this interesting. Currently I’m using Heroku but I’m looking into other options so that I can take advantage of OTP.
bmitch
I know you mentioned you use Jenkins. But what I’d like personally is how to setup a deploy pipeline in GitLab CI that would deploy to staging, production etc…
Step by step, will full instructions, assuming the reader is brand new to the topic and needs hand holding
Exadra37
I am with @bmitch on this one… I also would like to see an Gitlab CI example alongside with the Jenkins one.
skanderm
I just went through learning how to deploy an app to EC2. By far the biggest hurdle was understanding the overall deployment picture.
This video ultimately helped me understand the deployment flow between pushing code to a production-like build environment and subsequent deployment and starting of the release.
I understand you’re mostly targeting ECS, but a top-level view helped me the best.
minhajuddin
Thanks, that looks like a good candidate for CI
dokie
I would be keen to see other deployment models and not just Docker. We have been deploying native distillery releases as Debian packages for our distributed Elixir nodes. The AWS (not just EC2) infrastructure is managed in Terraform scripts along with some custom bash scripts.
minhajuddin
Thanks for the idea. This would be a whole another beast. We have a rails application which gets installed this way using debs and we use chef internally. If you are on AWS the convenience of ECS is hard to match. I’ll see if I can research these methods and do a few blog posts on them