rentgendroid/docker-compose.yaml
migueldar a4c63e5ad4 created new image to improve waiting times
Reviewers: kuba-orlik

Subscribers: kuba-orlik

Differential Revision: https://hub.sealcode.org/D1364
2024-03-06 08:45:48 +01:00

37 lines
736 B
YAML

services:
proxy:
build: ./proxy/
container_name: proxy
networks:
- rent_gen_android
volumes:
- $PWD/certificates:/root/.mitmproxy
- $PWD/log:/log
android:
build: ./android/
container_name: android
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
cap_add:
- NET_ADMIN
devices:
- /dev/kvm
networks:
- rent_gen_android
volumes:
- $PWD/android/conf:/conf
- $PWD/android/code:/code
http_server:
build: ./http_server/
container_name: http_server
networks:
- rent_gen_android
volumes:
- $PWD/http_server/code:/code
- $PWD/log:/log
ports:
- 8080:8080
networks:
rent_gen_android:
driver: bridge