We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4fa55 commit f460d29Copy full SHA for f460d29
vuln_apps/docker-compose.yml
@@ -6,14 +6,14 @@ services:
6
links:
7
- php
8
ports:
9
- - "8080:80"
+ - "${NOSQLMAP_VULN_APPS_APACHE_PORT:-8080}:80"
10
volumes:
11
- ./src:/usr/local/apache2/htdocs
12
php:
13
container_name: php
14
build: ./docker/php
15
16
- - "9000:9000"
+ - "${NOSQLMAP_VULN_APPS_PHP_PORT:-9000}:9000"
17
18
19
working_dir: /usr/local/apache2/htdocs
@@ -24,4 +24,4 @@ services:
24
MONGO_INITDB_ROOT_PASSWORD: prisma
25
build: ./docker/mongo
26
27
- - "27017:27017"
+ - "${NOSQLMAP_VULN_APPS_MONGO_PORT:-27017}:27017"
0 commit comments