oura 2.2.0

The tail of Cardano
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3.1"

services:
  db:
    image: postgres
    # image: mumak
    restart: always
    environment:
      POSTGRES_PASSWORD: example
    volumes:
      - postgres_db:/var/lib/postgresql/data
    ports:
      - 5432:5432

volumes:
  postgres_db: