All Projects → rsyuzyov → docker-postgresql-pro-1c

rsyuzyov / docker-postgresql-pro-1c

Licence: MIT license
Dockerfile для сборки PostgreSQL под 1С:Предприятие 8

Projects that are alternatives of or similar to docker-postgresql-pro-1c

cloud-tileserver
Serve mapbox vectortiles via AWS stack
Stars: ✭ 48 (+77.78%)
Mutual labels:  postgres
postgresql-resilient
Automatic re-connection support for PostgreSQL.
Stars: ✭ 16 (-40.74%)
Mutual labels:  postgres
general-angular
Realtime Angular Admin/CRUD Front End App
Stars: ✭ 24 (-11.11%)
Mutual labels:  postgres
mitoc-trips
The MIT Outing Club's trip management system
Stars: ✭ 30 (+11.11%)
Mutual labels:  postgres
shuttletracker
🚐 Shuttle tracking for RPI.
Stars: ✭ 44 (+62.96%)
Mutual labels:  postgres
snegopat
Snegopat для 1С 8.Х (32x)- Snegopat for 1C:Enterprise
Stars: ✭ 66 (+144.44%)
Mutual labels:  1c
postgres-deno
A PostgreSQL extension for Deno: run Typescript in PostgreSQL functions and triggers.
Stars: ✭ 87 (+222.22%)
Mutual labels:  postgres
V8PasswordEjector
Сброс учетных записей для 1С:Предприятия 8.x
Stars: ✭ 23 (-14.81%)
Mutual labels:  1c
go-pg-crud
Simple Postgres CRUD written in Golang
Stars: ✭ 44 (+62.96%)
Mutual labels:  postgres
api.pokedextracker.com
API for pokedextracker.com
Stars: ✭ 38 (+40.74%)
Mutual labels:  postgres
ChefAPI
API using FastAPI and PostgreSQL for sharing or keeping track of awesome food recipes Based on Oauth2 and JWT 💎
Stars: ✭ 16 (-40.74%)
Mutual labels:  postgres
realtime-flask-experiment
Experimenting with PostgreSQL's Listen/Notify and Flask-SocketIO
Stars: ✭ 22 (-18.52%)
Mutual labels:  postgres
create-fastify-app
An utility that help you to generate or add plugin to your Fastify project
Stars: ✭ 53 (+96.3%)
Mutual labels:  postgres
connect4
Connect 4️⃣Game
Stars: ✭ 1 (-96.3%)
Mutual labels:  postgres
docker-compose-moodle
This project quickly builds a local workspace for Moodle (Apache2, PHP-FPM with XDEBUG y Postgres) using containers for each of its main components. The local workspace is built and managed by Docker Compose
Stars: ✭ 33 (+22.22%)
Mutual labels:  postgres
lego
A lightweight SQL (string) builder using ES6 template strings. Lego embraces SQL instead of adding yet another abstraction layer.
Stars: ✭ 54 (+100%)
Mutual labels:  postgres
nim-gatabase
Connection-Pooling Compile-Time ORM for Nim
Stars: ✭ 103 (+281.48%)
Mutual labels:  postgres
terraform-aws-druid
Terraform module to deploy Apache Druid in Kubernetes
Stars: ✭ 16 (-40.74%)
Mutual labels:  postgres
dlock
Interval Lock
Stars: ✭ 19 (-29.63%)
Mutual labels:  postgres
erdiagram
Entity-Relationship diagram code generator library
Stars: ✭ 28 (+3.7%)
Mutual labels:  postgres

Dockerfile для сборки PostgreSQL, адаптированного для 1С.

https://hub.docker.com/r/rsyuzyov/docker-postgresql-pro-1c/

Версия PG: 9.6.8 (для 1С 8.3.9 и выше)

Сделано на основе замечательных sameersbn/docker-postgresql и Postgres Professional

Отличия от родительского проекта:

  • базовый образ ubuntu заменен с trusty на xenial
  • локаль ru_RU.UTF-8
  • PG берется из 1c.postgrespro.ru

Использование

Под linux (bash):

docker volume create --name pg-data
docker volume create --name pg-run
docker run --name postgresql --restart always \
 -v pg-data:/var/lib/postgresql -v pg-run:/run/postgresql \
 --net host \
 -d rsyuzyov/docker-postgresql-pro-1c

Под windows (powershell):

docker volume create --name pg-data
docker volume create --name pg-run
docker run --name postgresql --restart always `
 -v pg-data:/var/lib/postgresql -v pg-run:/run/postgresql `
 --net host `
 -d rsyuzyov/docker-postgresql-pro-1c

Подключение:

  • сервер: сервер или ip, на котором запущен Docker
  • порт: 5432
  • пользователь: postgres
  • пароль: пустой

Дополнительно

При использовании --net host по скорости работы практически не отличается от варианта установки на хост.

Ссылки

Подробное описание, а также инструкции на все случаи жизни смотрим в sameersbn/docker-postgresql

В учебных целях, в том числе для ознакомления с инструментарием управления и обслуживания postgres очень рекомендуется посмотреть сюда.

Другие докер-файлы PostgreSQL для 1С:

Докер-файлы сервера 1С:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].