Skip to content

Commit fba737d

Browse files
authored
Update README.md
1 parent 410f10e commit fba737d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# docker-adagios-rpm
2+
Docker image for Adagios built from rpms (Naemon-Adagios)
3+
4+
[![Docker Stars](https://img.shields.io/docker/stars/opinkerfi/adagios-rpm.svg)]()
5+
[![Docker Pulls](https://img.shields.io/docker/pulls/opinkerfi/adagios-rpm.svg)]()
6+
[![GitHub tag](https://img.shields.io/github/tag/opinkerfi/adagios-rpm.svg)]()
7+
[![GitHub release](https://img.shields.io/github/release/opinkerfi/adagios-rpm.svg)]()
8+
9+
## Usage
10+
11+
```
12+
docker create \
13+
--name=my-adagios \
14+
-p 80:80 \
15+
opinkerfi/adagios-git
16+
```
17+
18+
## Parameters
19+
20+
The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
21+
For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container.
22+
So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080
23+
http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.
24+
25+
* `-p 80` - Port for adagios webui
26+
27+
For shell access whilst the container is running do `docker exec -it my-adagios /bin/bash`.

0 commit comments

Comments
 (0)