Skip to content

Commit

Permalink
Merge pull request #12 from opexdev/release-v1.0.0-beta.4
Browse files Browse the repository at this point in the history
Release v1.0.0-beta.4
  • Loading branch information
ebrahimmfadae authored Aug 1, 2022
2 parents 435ed4f + 54b9180 commit 469d753
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Trigger jenkins job
uses: appleboy/jenkins-action@master
with:
url: ${{ secrets.JENKINS_URL }}
user: ${{ secrets.JENKINS_USER }}
token: ${{ secrets.JENKINS_TOKEN }}
url: ${{ secrets.JENKINS_DEV_URL }}
user: ${{ secrets.JENKINS_DEV_USER }}
token: ${{ secrets.JENKINS_DEV_TOKEN }}
job: "opex-dev"
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Trigger jenkins job
uses: appleboy/jenkins-action@master
with:
url: ${{ secrets.JENKINS_URL }}
user: ${{ secrets.JENKINS_USER }}
token: ${{ secrets.JENKINS_TOKEN }}
job: "demo-opex"
url: ${{ secrets.JENKINS_DEMO_URL }}
user: ${{ secrets.JENKINS_DEMO_USER }}
token: ${{ secrets.JENKINS_DEMO_TOKEN }}
job: "opex-demo"
2 changes: 0 additions & 2 deletions docker-stack.backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ services:
<<: *backup-service
volumes:
- api-backup:/backups
networks:
- default
environment:
- POSTGRES_HOST=${POSTGRES_HOST:-postgres-api}
- POSTGRES_DB=opex
Expand Down
3 changes: 0 additions & 3 deletions docker-stack.demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ services:
consul:
ports:
- "8500:8500"
nginx:
ports:
- "443:443"
3 changes: 0 additions & 3 deletions docker-stack.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ services:
consul:
ports:
- "8501:8500"
nginx:
ports:
- "8443:443"
11 changes: 10 additions & 1 deletion docker-stack.reverse-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@ version: '3.8'
services:
nginx:
image: ghcr.io/opexdev/nginx:$TAG
environment:
- EXPOSED_PORT=$EXPOSED_PORT
- SERVER_NAME_DASHBOARD=$SERVER_NAME_DASHBOARD
- SERVER_NAME_ADMIN_PANEL=$SERVER_NAME_ADMIN_PANEL
- SERVER_NAME_WEB_APP=$SERVER_NAME_WEB_APP
- SERVER_NAME_AUTH=$SERVER_NAME_AUTH
- SERVER_NAME_API=$SERVER_NAME_API
volumes:
- www:/data/www
secrets:
- opex_dev_crt
- private_pem
ports:
- "$EXPOSED_PORT:443"
networks:
- default
depends_on:
Expand All @@ -23,4 +32,4 @@ services:
restart_policy:
condition: on-failure
volumes:
www:
www:
1 change: 1 addition & 0 deletions docker-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ services:
image: ghcr.io/opexdev/accountant:$TAG
environment:
- JAVA_OPTS=-Xmx256m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005
- SPRING_PROFILES_ACTIVE=scheduled
- KAFKA_IP_PORT=kafka-1:29092,kafka-2:29092,kafka-3:29092
- CONSUL_HOST=consul
- DB_IP_PORT=postgres-accountant
Expand Down

0 comments on commit 469d753

Please sign in to comment.