thoth 0.1.10

GraphQL API for bibliographic data
version: "3.5"

services:
  db:
    image: postgres:12
    container_name: "thoth_db"
    restart: unless-stopped
    volumes:
      - db:/var/lib/postgresql/data
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env

  thoth:
    image: openbookpublishers/thoth
    container_name: "thoth"
    restart: unless-stopped
    env_file:
      - .env
    depends_on:
      - db

volumes:
  db: