kirill-zhirnov / boundless-commerce-os-db

Database for Boundless Commerce (Open Source Version)

Home Page:https://boundless-commerce.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Database for Boundless Commerce

Docker Image

There are 2 required environment variables:

  • POSTGRES_PASSWORD

Launching with Docker-Compose:

An example of docker-compose.yml:

version: '3.6'
services:
  db:
    image: kirillzh87/boundless-commerce-db:latest
    environment:
      POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
    healthcheck:
      test: pg_isready -U postgres
      interval: 10s
      timeout: 5s
      retries: 5
    restart: unless-stopped

Launching DB natively

If you want to run DB naively - execute queries from ./docker/postgres/docker-startup.sh - Don't forget to specify environment variables!

About

Database for Boundless Commerce (Open Source Version)

https://boundless-commerce.com

License:MIT License


Languages

Language:PLpgSQL 100.0%Language:Shell 0.0%Language:Dockerfile 0.0%