Files
firefox-accounts-mirror/packages/fxa-customs-server/test/integration/reputation/docker-compose.yml
Vijay Budhram 0e00017b0d fix(cache): Remove memcache service and references to it
feat(sync): Return estimated sync devices in recovery key exist route
2024-04-30 15:08:47 -04:00

35 lines
663 B
YAML

version: '3'
services:
redis:
container_name: customs_redis
image: redis:3.2
ports:
- '6379:6379'
iprepd:
container_name: customs_iprepd
image: mozilla/iprepd:latest
links:
- redis
ports:
- '9085:9085'
depends_on:
- redis
volumes:
- ${PWD}/iprepd.yaml:/app/iprepd.yaml
customs:
container_name: customs_app
image: fxa-customs-server:test
build:
context: ../../..
dockerfile: Dockerfile
links:
- iprepd:iprepd.host
depends_on:
- iprepd
ports:
- '7000:7000'
command: node_modules/.bin/tap test/integration/reputation/iprepd_tests.js