resident-utils 0.7.0

Resident program library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  db:
    image: postgres:16
    environment:
      - POSTGRES_DB=web
      - POSTGRES_USER=user
      - POSTGRES_PASSWORD=pass
      - TZ=Asia/Tokyo
      - PGTZ=Asia/Tokyo
    ports:
      - 5432:5432
    volumes:
      - resident_postgresql_data:/var/lib/postgresql/data

volumes:
  resident_postgresql_data: