25 lines
362 B
YAML
25 lines
362 B
YAML
|
|
services:
|
||
|
|
integration-tests:
|
||
|
|
image: integration-tests
|
||
|
|
build: .
|
||
|
|
container_name: integration_tests
|
||
|
|
restart: "no"
|
||
|
|
|
||
|
|
environment:
|
||
|
|
REDIS_HOST: redis
|
||
|
|
REDIS_PORT: 6379
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
- .:/app
|
||
|
|
- ./logs:/logs
|
||
|
|
|
||
|
|
networks:
|
||
|
|
- crop_network
|
||
|
|
|
||
|
|
tty: true
|
||
|
|
stdin_open: true
|
||
|
|
|
||
|
|
networks:
|
||
|
|
crop_network:
|
||
|
|
external: true
|