[ADD]Postgre : custom image with fr locale

This commit is contained in:
Fabien Bourgeois 2016-10-03 16:08:52 +02:00
parent 4a81995908
commit 56989c3253
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,8 @@
version: '2'
services:
postgres:
image: postgres:9.5
build: ../postgres
image: frpg:9.5
environment:
POSTGRES_USER: odoo
POSTGRES_PASSWORD: somethingToChange

5
postgres/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM postgres:9.5
MAINTAINER Fabien Bourgeois <fabien@yaltik.com>
RUN localedef -i de_DE -c -f UTF-8 -A /usr/share/locale/locale.alias fr_FR.UTF-8
ENV LANG fr_FR.utf8