mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-13 20:36:41 +01:00
35 lines
663 B
YAML
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
|