gmc
I managed to deploy my Phoenix App on an external virtual server using Docker. The only thing missing is the call of “migrate” to run the migrations before the server starts.
I started using the official Phoenix Dockerfile and added a docker-compose.yml with an additional Postgres container. The server starts without migrations because of the “CMD [”/app/bin/server"]" statement and the end of the Dockerfile.
I tried to add “RUN /app/bin/migrate” just before, but then I get an error that the environment variable DATABASE_URL is missing. But actually it’s set in the docker-compose.yml file for the Phoenix container. It’s obviously set correctly as the server starts with no issues.
What is the correct way to run the migrations?
Btw. I would also like to run seeds.ex, but I guess I have to add this in the release.ex module.
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
D4no0
You should remember that you don’t have mix after you created a release version, instead you can use Ecto.Migrator for those tasks.
I’ve tried several methods of doing migrations, and the best method on running production environments is to run migration via remote console, you can do this by starting a bash console inside of your container.
Another method is to create something like a GenServer for migration and add it to your application supervision tree, this way your migrations will run automatically everytime the server is started.
If you don’t want your system to run while migration is in progress, the best bet is to create a script that will execute a rpc call to your migration function, then start the server.
gmc
The script /app/bin/migrate actually uses Ecto.Migrator, so this is not an issue. I struggle with the call of this in the Dockerfile.
D4no0
instead of calling /app/bin/server call your script and at the last line start the server.
gmc
I tried this (the last two lines of my Dockerfile):
RUN /app/bin/migrate
CMD [“/app/bin/server”]
But there’s an error saying:
environment variable DATABASE_URL is missing
But it’s set in the docker_compose.yml:
version: “3”
networks:
internal:
external: false
services:
app:
image: server
build:
context: .
volumes:
- /etc/letsencrypt:/etc/letsencrypt
environment:
- SECRET_KEY_BASE=fsfsdfsdfsFSFSDFDSFdsfeudUVXUcvtroz2AXRzHsX9u3ZGCmR15gvLY8d
- DATABASE_URL=ecto://postgres: sdfsdftRETERT@db/ivv_server_prod
ports:
- 443:443
networks:
- internal
depends_on:
- db
db:
image: postgres
volumes:
- /var/lib/postgresql/ivv-server/:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=sdfsdftRETERT
- POSTGRES_DB=ivv_server_prod
networks:
- internal
D4no0
this will not work, you are trying to execute migrations at the moment you build the container, you have to execute them when the container is started. This means that your migration script should be in last CMD.
gmc
I haven’t figured out how to change my Dockerfile to run migrations automatically after the firing up the server using “docker-compose up”. Anyway, this isn’t so important as I can log into the container and start the “migrate” script manually.
But I still haven’t found a solution to run seed.exs which contains all the master data. I have found threads where people are talking about using Code.eval_file. But the script stops when trying to build the path to the seed.exs file with an error saying that module mix is not available. I have this in my release module:
If I don’t find a solution I will have to create an sql_loader script. Does anybody have similar requirements?
dimitarvp
I haven’t checked but at least if you want
docker run ...to “automatically” run a command then you do it e.g. like this:docker build ...will build everything except the finalCMDwhereasdocker run ...will only run the last CMD, if memory serves.But I am not sure if that even relates to doing
docker-compose up. Maybe it doesn’t, haven’t checked.stefanchrobot
I’m using Elixir releases with a Dockerfile similar to the one in the Phoenix guides. Here’s the last line:
If the migrations fail, the app is not started and the whole deployment fails (which is what I want).
gmc
Thanks, this is what I was looking for!
RodolfoSilva
In addition, I would recommend to put the
execcommand before start the app.Without this You’ll not be able to use Ctrl+C to kill the process when you start the app with
docker run.In my case I’ve create a new shell file in my release folder called
migrate_and_serverwith this:Or you can just use this way: