Skip to content
Snippets Groups Projects
docker-compose.yml 375 B
Newer Older
version: '3.7'
services:
  db:
    image: postgres:latest
    restart: always
    environment:
      - POSTGRES_USER=sa
      - POSTGRES_PASSWORD=password
      - POSTGRES_DB=dataprovider
    ports:
      - "5432:5432"
  api:
    build: .
    restart: always
    ports:
      - "3000:3000"
    command: json-server --watch api.json
    volumes:
      - "./api.json:/api.json"

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.