mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 19:58:52 +00:00
23 lines
475 B
YAML
23 lines
475 B
YAML
# T-Pot (Standard)
|
|
# For docker-compose ...
|
|
version: '2.2'
|
|
|
|
networks:
|
|
ui-for-docker_local:
|
|
|
|
services:
|
|
|
|
# Ui-for-docker service
|
|
ui-for-docker:
|
|
build: .
|
|
container_name: ui-for-docker
|
|
command: -H unix:///var/run/docker.sock --no-auth
|
|
restart: always
|
|
networks:
|
|
- ui-for-docker_local
|
|
ports:
|
|
- "127.0.0.1:64299:9000"
|
|
image: "dtagdevsec/ui-for-docker:1804"
|
|
read_only: true
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|