Skip to content

Commit

Permalink
add new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davetron5000 committed Jan 30, 2024
1 parent 3a9d788 commit eab6dfa
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# dx.source=https://github.com/sj26/mailcatcher/issues/363
# dx.stability=vendor
mailcatcher:
image: sj26/mailcatcher:v0.9.0
pull_policy: "missing"
ports:
- "11080:1080"
expose:
- "1025"
# vim: ft=yaml nospell
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# dx.source=https://hub.docker.com/_/postgres
# dx.stability=docker
postgres:
image: postgres:16
pull_policy: "missing"
environment:
POSTGRES_PASSWORD: postgres
# vim: ft=yaml nospell
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# dx.source=https://www.postgresql.org/download/linux/debian/
# dx.stability=guess
RUN apt-get -y install lsb-release && \
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
apt-get update && \
apt-get -y install postgresql-client-16
# vim: ft=Dockerfile

0 comments on commit eab6dfa

Please sign in to comment.