mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
bump to pg14 for real now
This commit is contained in:
parent
bcf295b1fa
commit
e9247b6f98
4 changed files with 7 additions and 7 deletions
|
@ -45,7 +45,7 @@ services:
|
|||
- redis
|
||||
|
||||
postgres:
|
||||
image: postgres:13.4-alpine
|
||||
image: postgres:14.1-alpine
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=postgres
|
||||
volumes:
|
||||
|
@ -67,7 +67,7 @@ services:
|
|||
hard: 65536
|
||||
|
||||
redis:
|
||||
image: redis:6.2.5-alpine
|
||||
image: redis:6.2.6-alpine
|
||||
logging:
|
||||
driver: "none"
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
FROM elixir:1.12.3-alpine
|
||||
FROM elixir:1.13.1-alpine
|
||||
|
||||
RUN (echo "https://github.com/philomena-dev/prebuilt-ffmpeg/raw/master"; cat /etc/apk/repositories) > /tmp/repositories \
|
||||
&& cp /tmp/repositories /etc/apk/repositories \
|
||||
&& apk update --allow-untrusted \
|
||||
&& apk add inotify-tools build-base git ffmpeg ffmpeg-dev npm nodejs file-dev libpng-dev gifsicle optipng libjpeg-turbo-utils librsvg imagemagick postgresql-client wget rust cargo --allow-untrusted \
|
||||
&& apk add inotify-tools build-base git ffmpeg ffmpeg-dev npm nodejs file-dev libpng-dev gifsicle optipng libjpeg-turbo-utils librsvg imagemagick postgresql14-client wget rust cargo --allow-untrusted \
|
||||
&& mix local.hex --force \
|
||||
&& mix local.rebar --force
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM nginx:1.21.3-alpine
|
||||
FROM nginx:1.21.4-alpine
|
||||
ENV APP_DIR /srv/philomena
|
||||
COPY docker/web/nginx.conf /tmp/docker.nginx
|
||||
RUN envsubst '$APP_DIR' < /tmp/docker.nginx > /etc/nginx/conf.d/default.conf
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
-- PostgreSQL database dump
|
||||
--
|
||||
|
||||
-- Dumped from database version 13.4
|
||||
-- Dumped by pg_dump version 13.4
|
||||
-- Dumped from database version 14.1
|
||||
-- Dumped by pg_dump version 14.1
|
||||
|
||||
SET statement_timeout = 0;
|
||||
SET lock_timeout = 0;
|
||||
|
|
Loading…
Reference in a new issue