Skip to content

Commit 9385fb3

Browse files
committed
postgres (2)
1 parent 9a83088 commit 9385fb3

File tree

2 files changed

+26
-21
lines changed

2 files changed

+26
-21
lines changed

base/README.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
1-
# exivity/docker
1+
# exivity/base
22

3-
Docker base images used at Exivity.
3+
Multiarch Docker base image (Windows and Linux).
44

5-
## tags
5+
## Usage
66

7-
### :latest
7+
```
8+
docker run -it --rm exivity/base:latest
9+
```
810

9-
Multiarch image containing both Windows and Linux images.
11+
## Software
1012

11-
### :windows
13+
### Windows
1214

13-
_mcr.microsoft.com/windows/servercore:1903_
15+
Base image: _mcr.microsoft.com/windows/servercore:ltsc2019_
1416

1517
- PowerShell 6.2.0
1618
- Node 10.15.3
1719
- Visual C++ Redistributable for Visual Studio 2015
1820
- Yarn 1.13.0
1921
- Git for Windows 2.20.1
2022

21-
notes:
22-
- previously, we used _mcr.microsoft.com/windows/nanoserver:1903_ but this turned out to be incompatible with nginx, see https://social.msdn.microsoft.com/Forums/en-US/7c30cb71-d449-4910-8bf5-f56023f7218e/nginx-in-nanoserver-container
23+
Notes: Ideally _mcr.microsoft.com/windows/nanoserver:1903_ would be used for a
24+
smaller footprint, but nginx for Windows is only available as a 32bit version
25+
(see https://social.msdn.microsoft.com/Forums/en-US/7c30cb71-d449-4910-8bf5-f56023f7218e/nginx-in-nanoserver-container)
2326

24-
### :linux
27+
### Linux
2528

26-
_ubuntu:latest_
29+
Base image: _ubuntu:latest_
2730

2831
- zip
2932
- unzip

rabbitmq/README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
# exivity:rabbitmq
22

3-
Builds Docker images of Rabbit MQ server (Windows only).
3+
Docker image of Rabbit MQ server (Windows only).
44

5-
## Commands during development
5+
## Usage
66

77
```
8-
export $RABBITMQ_VERSION=3.8.6
8+
docker run --rm --detach \
9+
-p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 \
10+
--name rabbitmq exivity/rabbitmq:latest
911
```
1012

11-
Build:
13+
## Development
1214

1315
```
14-
docker build --build-arg VERSION=$RABBITMQ_VERSION --file Dockerfile.windows --tag exivity/rabbitmq:$RABBITMQ_VERSION .
16+
export RABBITMQ_VERSION=3.8.6
1517
```
1618

17-
Run interactively:
19+
Build:
1820

1921
```
20-
docker run --rm -it -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 --name rabbitmq exivity/rabbitmq:$RABBITMQ_VERSION
22+
docker build --build-arg VERSION=$RABBITMQ_VERSION --file Dockerfile.windows --tag exivity/rabbitmq:$RABBITMQ_VERSION .
2123
```
2224

23-
Run in background:
25+
Run interactively:
2426

2527
```
26-
docker run --rm --detach -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 --name rabbitmq exivity/rabbitmq:$RABBITMQ_VERSION
28+
docker run --rm -it -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 --name rabbitmq exivity/rabbitmq:$RABBITMQ_VERSION
2729
```
2830

2931
Attach shell to running container:
@@ -32,7 +34,7 @@ Attach shell to running container:
3234
docker exec -it rabbitmq cmd.exe
3335
```
3436

35-
Then, i.e. follow log file:
37+
Follow log file:
3638

3739
```
3840
powershell

0 commit comments

Comments
 (0)