Skip to content

Instantly share code, notes, and snippets.

@iSeiryu
Created July 21, 2024 16:11
Show Gist options
  • Save iSeiryu/064c62e87a165d2c83a72ebab225a3ef to your computer and use it in GitHub Desktop.
Save iSeiryu/064c62e87a165d2c83a72ebab225a3ef to your computer and use it in GitHub Desktop.
A large test Postgres DB with movie info

https://github.com/credativ/omdb-postgresql

FROM postgres:latest

WORKDIR /omdb
COPY . .
RUN apt-get update \
    && apt-get install wget -y \
    && apt-get install bzip2 -y
RUN ./download

CMD ["postgres"]
docker run -itd -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment