spawn-db 0.1.13

Database Build System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
services:
  postgres:
    image: postgres:17
    container_name: spawn-db
    networks:
      - spawn
    ports:
      - "7654:5432"
    restart: always
    environment:
      POSTGRES_USER: spawn
      POSTGRES_PASSWORD: spawn
    command: ["postgres", "-c", "log_statement=all"]

networks:
  spawn:
    name: spawn