Skip to content

Commit

Permalink
Merge pull request #1488 from praminda/4.0.0-m1
Browse files Browse the repository at this point in the history
Prepare for 4.0.0-m1 release
  • Loading branch information
pubudu538 authored Nov 13, 2020
2 parents aa8f26c + 7b7f1dd commit 039c0a1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<images>
<image>
<alias>mg-adapter</alias>
<name>wso2am/mg-adapter:${project.version}</name>
<name>wso2/mg-adapter:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<assembly>
Expand Down
2 changes: 1 addition & 1 deletion developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ maven plugin would fail to create the new docker images)
java-11 as the source)

- Navigate to distribution/target/.
Then extract the zip file called wso2am-micro-gw-4.0.0-SNAPSHOT.zip
Then extract the zip file called wso2am-micro-gw-4.0.0-m1.zip

- Then execute `docker-compose up` to run the setup. This will start an envoy container,
filter-core container and piot container. The mounted configurations can be found from
Expand Down
2 changes: 1 addition & 1 deletion enforcer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<images>
<image>
<alias>mg-enforcer</alias>
<name>wso2am/mg-enforcer:${project.version}</name>
<name>wso2/mg-enforcer:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<args>
Expand Down
10 changes: 5 additions & 5 deletions remove-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
# -----------------------------------------------------------------------

# Just to assist developers by removing all the containers.
micro_gw_version=4.0.0-SNAPSHOT
micro_gw_version=4.0.0-m1

docker kill $(docker ps -a | grep wso2am/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2am/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker kill $(docker ps -a | grep wso2/mg-enforcer:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2/mg-enforcer:$micro_gw_version | awk '{print $1}')

docker kill $(docker ps -a | grep wso2am/mg-adapter:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2am/mg-adapter:$micro_gw_version | awk '{print $1}')
docker kill $(docker ps -a | grep wso2/mg-adapter:$micro_gw_version | awk '{print $1}')
docker rm $(docker ps -a | grep wso2/mg-adapter:$micro_gw_version | awk '{print $1}')
6 changes: 3 additions & 3 deletions resources/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: "3.7"
services:
router:
image: wso2am/mg-router:4.0.0-SNAPSHOT
image: wso2/mg-router:4.0.0-m1
ports:
- "9095:9095"
- "9000:9000"
links:
- adapter
- enforcer
adapter:
image: wso2am/mg-adapter:4.0.0-SNAPSHOT
image: wso2/mg-adapter:4.0.0-m1
volumes:
- ./resources/adapter/security:/home/wso2/security
- ./resources/conf:/home/wso2/conf
ports:
- "18000:18000"
- "9843:9843"
enforcer:
image: wso2am/mg-enforcer:4.0.0-SNAPSHOT
image: wso2/mg-enforcer:4.0.0-m1
volumes:
- ./resources/enforcer/security:/home/wso2/mg/security
- ./resources/conf:/home/wso2/conf
Expand Down
2 changes: 1 addition & 1 deletion router/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<images>
<image>
<alias>mg-router</alias>
<name>wso2am/mg-router:${project.version}</name>
<name>wso2/mg-router:${project.version}</name>
<build>
<contextDir>${project.basedir}/src/main/resources</contextDir>
<assembly>
Expand Down

0 comments on commit 039c0a1

Please sign in to comment.