Skip to content

Commit 5f25cd4

Browse files
committedAug 13, 2020
chore: postgres tag
1 parent 9385fb3 commit 5f25cd4

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
 

‎.github/workflows/postgres.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
env:
99
POSTGRES_VERSION: 12.3-2
10+
DOCKER_TAG: 12.3
1011

1112
jobs:
1213
build:
@@ -19,14 +20,14 @@ jobs:
1920
- name: build
2021
run: |
2122
cd postgres
22-
docker build --build-arg VERSION=$POSTGRES_VERSION --file Dockerfile.windows --tag exivity/postgres:$POSTGRES_VERSION .
23-
docker tag exivity/postgres:$POSTGRES_VERSION exivity/postgres:latest
23+
docker build --build-arg VERSION=$POSTGRES_VERSION --file Dockerfile.windows --tag exivity/postgres:$DOCKER_TAG .
24+
docker tag exivity/postgres:$DOCKER_TAG exivity/postgres:latest
2425
- name: login
2526
run: echo $DOCKER_HUB_TOKEN | docker login -u $DOCKER_HUB_USER --password-stdin
2627
env:
2728
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
2829
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }}
2930
- name: push
3031
run: |
31-
docker push exivity/postgres:$POSTGRES_VERSION
32+
docker push exivity/postgres:$DOCKER_TAG
3233
docker push exivity/postgres:latest

‎postgres/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# exivity:postgres
1+
# exivity/postgres
22

33
Docker image of PostgreSQL server (Windows only).
44

‎rabbitmq/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# exivity:rabbitmq
1+
# exivity/rabbitmq
22

33
Docker image of Rabbit MQ server (Windows only).
44

0 commit comments

Comments
 (0)
Please sign in to comment.