-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.playwright.yml
More file actions
56 lines (48 loc) · 1016 Bytes
/
docker-compose.playwright.yml
File metadata and controls
56 lines (48 loc) · 1016 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# test for AS4Mobile
version: '3.8'
networks:
test:
services:
redis:
image: redis:latest
networks:
- test
ports:
- '6379:6379'
as:
image: as
build:
context: .
networks:
- test
ports:
- '3000:3000'
# debugger
- '9229:9229'
environment:
REDIS_URL: redis://redis:6379
HELLO_WALLET: 'http://wallet.hello-dev.net:3333'
COOKIE_SECRET: '66c71f55568f7b0c3b30cb6a8df9975b5125000caa775240b2e76eb96c43715e'
CLIENT_ID: 'hello-docker-test-client'
LOGIN_SYNC_URL: 'http://sync:8888/sync'
extra_hosts:
- "wallet.hello-dev.net:host-gateway"
# command: npm run debug
mockin:
image: hellocoop/mockin:latest
networks:
- test
ports:
- '3333:3333'
# debugger
- '9339:9229'
environment:
ISSUER: 'http://wallet.hello-dev.net:3333'
sync:
image: sync
build:
context: ./playwright/sync
networks:
- test
ports:
- '8888:8888'