mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 11:48:52 +00:00
18 lines
388 B
YAML
18 lines
388 B
YAML
# T-Pot (Standard)
|
|
# For docker-compose ...
|
|
version: '2.2'
|
|
|
|
services:
|
|
|
|
# nginx service
|
|
nginx:
|
|
container_name: nginx
|
|
restart: always
|
|
network_mode: "host"
|
|
ports:
|
|
- "64297:64297"
|
|
image: "dtagdevsec/nginx:1710"
|
|
volumes:
|
|
- /data/nginx/cert/:/etc/nginx/cert/
|
|
- /data/nginx/conf/nginxpasswd:/etc/nginx/nginxpasswd
|
|
- /data/nginx/log/:/var/log/nginx/
|