Skip to content

Commit a1eaa68

Browse files
authored
Remove anything not PostgreSQL (#1)
* Remove anything not related to PostgreSQL * Use explicit versions for all used GitHub runners * Increase Docker command readability * Use prefixes to find the correct Docker platform * Fix badge URLs * Fix declaring variables in Bash script * Rename variable for better readability * Fix test script * Remove unnecessary empty lines * Increase code readability * Rename GitHub Actions flow * Remove unnecessary empty lines * Rename variables to increase readability * Fix variable name storing PostgreSQL version * Fix variable references * Fix Docker image references * Include Docker resource when running commands * Update documentation * Fix incorrect long line separator
1 parent 30e7d91 commit a1eaa68

25 files changed

+165
-537
lines changed

.github/workflows/base.yml

-37
This file was deleted.

.github/workflows/postgres.yml .github/workflows/publishDockerImages.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
name: postgres
1+
name: publishDockerImages
22

33
on:
44
workflow_dispatch:
55
push:
66
paths:
7-
- ".github/workflows/postgres.yml"
7+
- ".github/workflows/publishDockerImages.yml"
88
- "*.sh"
9-
- "postgres/**"
9+
- "postgresql/**"
1010

1111
env:
12-
IMAGE: postgres
13-
VERSION: "14.0"
14-
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
15-
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }}
12+
DOCKER_IMAGE: "satrapu/postgresql"
13+
POSTGRESQL_VERSION: "14.0"
14+
DOCKER_HUB_USER: "${{ secrets.DOCKER_HUB_USER }}"
15+
DOCKER_HUB_TOKEN: "${{ secrets.DOCKER_HUB_TOKEN }}"
1616

1717
jobs:
1818
build:
1919
runs-on: ${{ matrix.os }}
2020

2121
strategy:
2222
matrix:
23-
os: [ubuntu-latest, windows-latest]
23+
os: [ubuntu-22.04, windows-2022]
2424

2525
env:
2626
CI_PLATFORM: ${{ matrix.os }}
@@ -33,7 +33,7 @@ jobs:
3333

3434
manifest:
3535
needs: build
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737

3838
steps:
3939
- uses: actions/checkout@v1

.github/workflows/rabbitmq.yml

-39
This file was deleted.

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
.idea
21
.vscode

README.md

+6-19
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,10 @@
1-
# Exivity Docker images
1+
# PostgreSQL Docker images
22

3-
## Generic base image
4-
5-
A dev image with common tools pre-installed.
6-
7-
| Image | Tags | Docs | Latest | Build status |
8-
|-------|------|------|--------|--------------|
9-
| `exivity/base` | [Docker Hub](https://hub.docker.com/r/exivity/base) | [README.md](base/README.md) | ![Latest version](https://img.shields.io/docker/v/exivity/base?sort=semver) | ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/exivity/docker/base) |
10-
11-
## OSS
12-
13-
The images below support Windows and Linux hosts and have built-in healthchecks.
3+
The Docker images below support Linux and Windows hosts and have built-in health-checks.
144

155
> **WARNING**
16-
> These images are meant as dev containers and have insecure defaults. Do not
17-
> use in production.
18-
19-
| Image | Tags | Docs | Latest | Build status |
20-
|-------|------|------|--------|--------------|
21-
| `exivity/postgres` | [Docker Hub](https://hub.docker.com/r/exivity/postgres) | [README.md](postgres/README.md) | ![Latest version](https://img.shields.io/docker/v/exivity/postgres?sort=semver) | ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/exivity/docker/postgres) |
22-
| `exivity/rabbitmq` | [Docker Hub](https://hub.docker.com/r/exivity/rabbitmq) | [README.md](rabbitmq/README.md) | ![Latest version](https://img.shields.io/docker/v/exivity/rabbitmq?sort=semver) | ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/exivity/docker/rabbitmq) |
6+
> These images are meant as dev containers and have insecure defaults. Do not use them in production!
237
8+
| Image | Tags | Docs | Latest | Build status |
9+
| -------------------- | --------------------------------------------------------- | ------------------------------- | --------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
10+
| `satrapu/postgresql` | [Docker Hub](https://hub.docker.com/r/satrapu/postgresql) | [README.md](postgres/README.md) | ![Latest version](https://img.shields.io/docker/v/satrapu/postgresql?sort=semver) | ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/satrapu/postgresql-docker-images/publishDockerImages) |

base/Dockerfile.linux

-17
This file was deleted.

base/Dockerfile.windows

-159
This file was deleted.

base/README.md

-35
This file was deleted.

0 commit comments

Comments
 (0)