Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 632 Bytes

File metadata and controls

27 lines (23 loc) · 632 Bytes

Postgres for 1C in docker

In time pentest 1C:Enterprise usually we can get access for cluster without protected password. So in explotation way need create selfhosted database (for example postgres)

Easy to start:

download compose file

services:
  pgpro:
    build: .
    image: s4ar1488/postgres1c
    container_name: pgpro
    ports:
      - "5432:5432"
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
    restart: unless-stopped

then just docker compose up -d

Notes

- I checked with version 1C:Enterprise server 8.3.24.1691
- Image basics on postgres 12 version