Skip to content

Commit

Permalink
solve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jusa3 committed Jul 20, 2023
2 parents 7045fa8 + 63c3fa3 commit 5b23106
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13,406 deletions.
13 changes: 6 additions & 7 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ version: "2.2"
services:
frontend:
# uncomment for local dev
build: ./frontend
# build: ./frontend
restart: always
# image: github.com/nfdi4health/metadata-annotation-workbench/frontend:${VERSION}
image: gitlab.zbmed.de:5050/km/nfdi4health/annotation-workbench/frontend:${VERSION}

environment:
Expand All @@ -17,19 +18,17 @@ services:

backend:
# uncomment for local dev
build: ./backend
# build: ./backend
restart: always
image: gitlab.zbmed.de:5050/km/nfdi4health/annotation-workbench/backend:${VERSION}
# image: github.com/nfdi4health/metadata-annotation-workbench:${VERSION}
image: gitlab.zbmed.de:5050/km/nfdi4health/annotation-workbench/frontend:${VERSION}
expose:
- "5000"
environment:
- PYTHONPATH=/workspace
- API_SEMLOOKP=https://semanticlookup.zbmed.de/ols/api/
- API_OLS=https://www.ebi.ac.uk/ols/api/
# - DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- DB_HOST=db
- DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres
- INSTRUMENTS=/var/lib/mda/instruments
depends_on:
- db
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:16.13.1-alpine as build-deps
WORKDIR /usr/src/app
ARG NPM_TOKEN
COPY .npmrc .npmrc
COPY package.json yarn.lock ./
COPY package.json package-lock.json ./
RUN npm install
COPY ./ ./
RUN npm run build
Expand Down
Loading

0 comments on commit 5b23106

Please sign in to comment.