diff --git a/Dockerfile b/Dockerfile index d218cb959..bb18bb959 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN apt update && apt install -y unzip rpm alien # Install ora2pg -RUN curl -L -o /tmp/ora2pg.zip https://github.com/darold/ora2pg/archive/v18.2.zip &&\ +RUN curl -L -o /tmp/ora2pg.zip https://github.com/darold/ora2pg/archive/v19.0.zip &&\ (cd /tmp && unzip ora2pg.zip && rm -f ora2pg.zip) &&\ mv /tmp/ora2pg* /tmp/ora2pg &&\ (cd /tmp/ora2pg && perl Makefile.PL && make && make install) diff --git a/README.md b/README.md index ef39a80ad..178bb7090 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ # ora2pg Docker +## Tags and Dockerfile links + +* 18.2 (https://github.com/Guy-Incognito/ora2pg-docker/blob/18.2/Dockerfile) Uses Version 18.2: https://github.com/darold/ora2pg/releases/tag/v18.2 +* 19.0 (https://github.com/Guy-Incognito/ora2pg-docker/blob/19.0/Dockerfile) Uses Version 19.0: https://github.com/darold/ora2pg/releases/tag/v19.0 + ## Introduction This container can be used to migrate from Oracle to PostgreSQL utilizing the tool ora2pg. -Uses Version 18.2: https://github.com/darold/ora2pg/releases/tag/v18.2 - Documentation: https://ora2pg.darold.net/documentation.html Thanks to Gilles Darold for this awsome tool!!