This commit is contained in:
Marco Ochse
2018-06-04 13:43:59 +00:00
parent e211a19c37
commit e8621fbba1
10 changed files with 62 additions and 41 deletions

View File

@ -0,0 +1,5 @@
FROM portainer/portainer:latest
ADD favicon.ico /ico
ENTRYPOINT ["/portainer"]

View File

@ -0,0 +1,15 @@
[![](https://images.microbadger.com/badges/version/dtagdevsec/ui-for-docker:1804.svg)](https://microbadger.com/images/dtagdevsec/ui-for-docker:1804 "Get your own version badge on microbadger.com") [![](https://images.microbadger.com/badges/image/dtagdevsec/ui-for-docker:1804.svg)](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
![Portainer UI](https://raw.githubusercontent.com/dtag-dev-sec/tpotce/master/docker/ui-for-docker/doc/dashboard.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 805 B