mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
tanner, snare, deps
This commit is contained in:
86
docker/tanner/docker-compose.yml
Normal file
86
docker/tanner/docker-compose.yml
Normal file
@ -0,0 +1,86 @@
|
||||
version: '2.3'
|
||||
|
||||
networks:
|
||||
tanner_local:
|
||||
|
||||
services:
|
||||
|
||||
# Tanner Redis Service
|
||||
tanner_redis:
|
||||
container_name: tanner_redis
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
image: "dtagdevsec/redis:1804"
|
||||
|
||||
# PHP Sandbox service
|
||||
tanner_phpox:
|
||||
build: ./phpox
|
||||
container_name: tanner_phpox
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
image: "dtagdevsec/phpox:1804"
|
||||
|
||||
# Tanner API Service
|
||||
tanner_api:
|
||||
build: ./tanner
|
||||
container_name: tanner_api
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
image: "dtagdevsec/tanner:1804"
|
||||
command: tannerapi
|
||||
depends_on:
|
||||
- tanner_redis
|
||||
|
||||
# Tanner WEB Service
|
||||
tanner_web:
|
||||
build: ./tanner
|
||||
container_name: tanner_web
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
image: "dtagdevsec/tanner:1804"
|
||||
command: tannerweb
|
||||
depends_on:
|
||||
- tanner_redis
|
||||
|
||||
# Tanner Service
|
||||
tanner:
|
||||
build: ./tanner
|
||||
container_name: tanner
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
image: "dtagdevsec/tanner:1804"
|
||||
command: tanner
|
||||
depends_on:
|
||||
- tanner_api
|
||||
- tanner_web
|
||||
- tanner_phpox
|
||||
|
||||
# Snare Service
|
||||
snare:
|
||||
build: ./snare
|
||||
container_name: snare
|
||||
restart: always
|
||||
stop_signal: SIGKILL
|
||||
tty: true
|
||||
networks:
|
||||
- tanner_local
|
||||
ports:
|
||||
- "80:80"
|
||||
image: "dtagdevsec/snare:1804"
|
||||
depends_on:
|
||||
- tanner
|
Reference in New Issue
Block a user