Last active
November 5, 2019 03:45
-
-
Save srikanthlogic/565d4c70a61bc7de7f5998921aa83a39 to your computer and use it in GitHub Desktop.
MobSF Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
postgres: | |
image: "postgres:latest" | |
hostname: postgresdb | |
restart: always | |
deploy: | |
replicas: 1 | |
resources: | |
limits: | |
memory: 2000M | |
restart_policy: | |
condition: on-failure | |
volumes: | |
- /Postgres_data/var/lib/postgresql:/var/lib/postgresql | |
environment: | |
- POSTGRES_USER=postgres | |
- POSTGRES_PASSWORD=password | |
- POSTGRES_DB=mobsf | |
mobsf: | |
image: "opensecurity/mobile-security-framework-mobsf:latest" | |
hostname: mobsfhost | |
restart: always | |
deploy: | |
replicas: 1 | |
resources: | |
limits: | |
memory: 4000M | |
restart_policy: | |
condition: on-failure | |
volumes: | |
- /MobSF_data:/root/.MobSF | |
ports: | |
- "8000:8000" | |
networks: | |
- webnet | |
networks: | |
webnet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment