-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
34 lines (32 loc) · 920 Bytes
/
compose.yaml
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
version: "3"
services:
test:
image: "sminch/tunnel-check:0.1.4"
environment:
SAUCE_USERNAME: ${SAUCE_USERNAME}
SAUCE_ACCESS_KEY: ${SAUCE_ACCESS_KEY}
SAUCE_OUTPUT_FORMAT: "text"
command: "python3 -s /workdir/run.py"
network_mode: host
volumes:
- ./py_files/:/workdir/
node:
image: "sminch/spidey-web:0.0.1"
command: "node /opt/app_v2.js"
network_mode: host
expose:
- 5000:5000
volumes:
- ./localhost-node/*:/opt/*
sauce-connect:
image: "saucelabs/sauce-connect:5.1.3"
environment:
SAUCE_USERNAME: ${SAUCE_USERNAME}
SAUCE_ACCESS_KEY: ${SAUCE_ACCESS_KEY}
SAUCE_OUTPUT_FORMAT: "text"
command: "run -u $SAUCE_USERNAME -k $SAUCE_ACCESS_KEY -c /opt/sauce-connect.yaml"
network_mode: host
extra_hosts:
- "web-store.ps.com:127.0.0.1"
volumes:
- ./sauce-connect.yaml:/opt/sauce-connect.yaml