Feature/transpile design system * remove example, we should use storybook instead * remove example, we should use storybook instead * css-modules cannot have :root, moved affected css-variables to globals.css * . * scandic-web no longer depends on design-system#build * * Update readme * Remove test code Approved-by: Anton Gunnarsson
29 lines
556 B
YAML
29 lines
556 B
YAML
services:
|
|
redis-api:
|
|
build:
|
|
context: ../redis-api
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3101:3001"
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- REDIS_CONNECTION=redis:6379
|
|
- PRIMARY_API_KEY=
|
|
- SECONDARY_API_KEY=
|
|
- NODE_ENV=development
|
|
- SENTRY_ENABLED=false
|
|
- SENTRY_DSN=fake-dsn
|
|
- SENTRY_ENVIRONMENT=development
|
|
redis:
|
|
image: redis:6
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
redisinsight:
|
|
image: redis/redisinsight:latest
|
|
ports:
|
|
- "5540:5540"
|
|
depends_on:
|
|
- redis
|