aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/docker-compose.yaml
blob: d93a09365da9d873a8309f8c34c1ed97faef92d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
volumes:
  warehouse-accounting-postgres-data:
    name: warehouse-accounting-postgres-data
    driver: local


services:
  postgres:
    image: postgres:17.4-alpine
    container_name: warehouse-accounting-postgres
    environment:
      - POSTGRES_PASSWORD=postgres
    ports:
      - 5432:5432
    volumes:
      - warehouse-accounting-postgres-data:/var/lib/postgresql/data