mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
tweaking
This commit is contained in:
5
docker/portainer/Dockerfile
Normal file
5
docker/portainer/Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM portainer/portainer:latest
|
||||
|
||||
ADD favicon.ico /ico
|
||||
|
||||
ENTRYPOINT ["/portainer"]
|
15
docker/portainer/README.md
Normal file
15
docker/portainer/README.md
Normal file
@ -0,0 +1,15 @@
|
||||
[](https://microbadger.com/images/dtagdevsec/ui-for-docker:1804 "Get your own version badge on microbadger.com") [](https://microbadger.com/images/dtagdevsec/ui-for-docker:1804 "Get your own image badge on microbadger.com")
|
||||
|
||||
# portainer
|
||||
|
||||
[portainer](http://portainer.io/) Portainer allows you to manage your Docker containers, images, volumes, networks and more ! It is compatible with the standalone Docker engine and with Docker Swarm.
|
||||
|
||||
This dockerized version is part of the **[T-Pot community honeypot](http://dtag-dev-sec.github.io/)** of Deutsche Telekom AG.
|
||||
|
||||
The `Dockerfile` contains the blueprint for the dockerized portainer and will be used to setup the docker image.
|
||||
|
||||
The `docker-compose.yml` contains the necessary settings to test portainer using `docker-compose`. This will ensure to start the docker container with the appropriate permissions and port mappings.
|
||||
|
||||
# Portainer UI
|
||||
|
||||

|
BIN
docker/portainer/doc/dashboard.png
Normal file
BIN
docker/portainer/doc/dashboard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 224 KiB |
20
docker/portainer/docker-compose.yml
Normal file
20
docker/portainer/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '2.3'
|
||||
|
||||
networks:
|
||||
portainer_local:
|
||||
|
||||
services:
|
||||
|
||||
portainer:
|
||||
build: .
|
||||
container_name: portainer
|
||||
command: -H unix:///var/run/docker.sock --no-auth
|
||||
restart: always
|
||||
networks:
|
||||
- portainer_local
|
||||
ports:
|
||||
- "127.0.0.1:64299:9000"
|
||||
image: "dtagdevsec/portainer:1804"
|
||||
read_only: true
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
BIN
docker/portainer/favicon.ico
Normal file
BIN
docker/portainer/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 805 B |
Reference in New Issue
Block a user