-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (32 loc) · 914 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (32 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3'
services:
integration_tests:
build: .
shm_size: '512m'
volumes:
- ./scripts:/app/scripts
- ./config:/app/config
- ./public:/app/public
- ./src:/app/src
- ./integration-tests:/app/integration-tests
command: bash -c "npm run build:ci && xvfb-run -a npm run test:integration:ci"
update_snapshots:
build: .
shm_size: '512m'
volumes:
- ./scripts:/app/scripts
- ./config:/app/config
- ./public:/app/public
- ./src:/app/src
- ./integration-tests:/app/integration-tests
command: bash -c "npm run build:ci && xvfb-run -a npm run test:integration:ci -- --updateSnapshot"
debug:
build: .
shm_size: '512m'
volumes:
- ./scripts:/app/scripts
- ./config:/app/config
- ./www:/app/www
- ./src:/app/src
- ./integration-tests:/app/integration-tests
command: /usr/bin/env bash