elucidate-server icon indicating copy to clipboard operation
elucidate-server copied to clipboard

docker compose

Open atomotic opened this issue 5 years ago • 0 comments

using the develop branch i'm able to start elucidate with the following docker-compose.yml the liquibase migrations are working fine, as i can see tables created in the postgres container

would you like to include this in the documentation somewhere? i'm walking through USAGE.md now to better understand the api

version: '3'
services:
  elucidate:
    image: 'dlcs/elucidate-server:1.4.3-SNAPSHOT'
    ports:
      - '8080:8080'
  database:
    image: 'postgres:10-alpine'
    environment:
     - POSTGRES_USER=postgres
     - POSTGRES_PASSWORD=
     - POSTGRES_DB=annotations

atomotic avatar Aug 08 '18 09:08 atomotic