-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (32 loc) · 781 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (32 loc) · 781 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
version: '3'
services:
api-server:
container_name: api-server
build:
context: ./
dockerfile: ./docker_files/api/Dockerfile
environment:
- EMU_ANDROID=emulator-5554
- ANDROID_DEVICE=LMX210c7800d73
- APK_DIR=/home/ncuevas/Desktop/projects/technical-challenge/apk
command: sh -c "python api/main.py"
volumes:
- .:/code
ports:
- "8000:8000"
network_mode: "host"
restart: always
# depends_on:
# - appium-server
# appium-server:
# container_name: appium-server
# build:
# context: ./
# dockerfile: ./docker_files/appium/Dockerfile
# command: sh -c "appium"
# volumes:
# - .:/code
# ports:
# - "4723:4723"
# restart: always
# network_mode: "host"