Coder Social home page Coder Social logo

postgres-rus's Introduction

PostgreSQL 12 docker image

docker pull lyncsystem/postgres-12-rus

В оригинальный образ добавлено:

  • локаль ru_RU.UTF-8
  • часовой пояс Europe/Moscow (переопределяется переменной окружения TZ)
  • расширения PostGIS, RUM индекс, русские словари для полнотекстового поиска

Расширения устанавливаются как обычно

CREATE EXTENSION postgis;
CREATE EXTENSION rum;
CREATE EXTENSION hunspell_ru_ru;
CREATE EXTENSION jsquery;

Со словарями работать примерно так

=> SELECT ts_lexize('russian_hunspell', 'истории');
 ts_lexize
-----------
 {история}
(1 row)

подробности о словаре здесь

Установка драйвера томов:

DOCKER-COMPOSE:

version: '3.7'
services:
  pgsql12:
    container_name: postgresql12-ru
    image: lyncsystem/postgresql:12
    ports:
      - 55432:5432
    volumes:
      - postgresql_data:/var/lib/postgresql/data
    environment:
      - "POSTGRES_PASSWORD=53398715"

volumes:
  postgresql_data:
    driver: local-persist
    driver_opts:
      mountpoint: /var/lib/postgresql/data

Pg-Tune

конфигуратор

postgres-rus's People

Contributors

shulyakovskiy avatar oxyii avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.