10 lines
288 B
Docker
10 lines
288 B
Docker
# Stable version of etherpad doesn't support npm 2
|
|
FROM postgres:9.4
|
|
MAINTAINER Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
RUN chown -R postgres:postgres /var/lib/postgresql/data
|
|
RUN localedef -i de_DE -c -f UTF-8 -A /usr/share/locale/locale.alias fr_FR.UTF-8
|
|
ENV LANG fr_FR.utf8
|
|
|
|
EXPOSE 5432
|