Skip to content

Instantly share code, notes, and snippets.

@abraithwaite
Created August 21, 2018 16:39
Show Gist options
  • Save abraithwaite/d3a8440389bbb93f44b80c68c8e23c68 to your computer and use it in GitHub Desktop.
Save abraithwaite/d3a8440389bbb93f44b80c68c8e23c68 to your computer and use it in GitHub Desktop.
Postgres and MySQL Dockerfile trick
FROM mysql
COPY migrations /migrations
RUN cp /migrations/*.up.sql /docker-entrypoint-initdb.d/
FROM postgres
COPY migrations /migrations
RUN cp /migrations/*up.sql /docker-entrypoint-initdb.d/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment