Skip to content

Commit

Permalink
Added build step
Browse files Browse the repository at this point in the history
  • Loading branch information
DAQEM committed Jan 10, 2024
1 parent d0074e9 commit 406c5b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Build Images
run: docker-compose build

- name: Deploy Images
run: docker-compose push

7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ services:
- "80:3000"
networks:
- netmon-network
image: daqem/netmon-user-web-app

netmon-admin-web-app:
build: Services/AdminWebApp
Expand All @@ -23,6 +24,7 @@ services:
- "81:3000"
networks:
- netmon-network
image: daqem/netmon-admin-web-app

netmon-api-gateway:
build: Services/APIGateway
Expand All @@ -34,6 +36,7 @@ services:
- "5000:80"
networks:
- netmon-network
image: daqem/netmon-api-gateway

netmon-account-service:
build: Services/AccountService
Expand All @@ -45,6 +48,7 @@ services:
- "5001:80"
networks:
- netmon-network
image: daqem/netmon-account-service

netmon-device-manager-service:
build:
Expand All @@ -61,6 +65,7 @@ services:
- netmon-mysql
networks:
- netmon-network
image: daqem/netmon-device-manager-service

netmon-snmp-polling-service:
build:
Expand All @@ -76,6 +81,7 @@ services:
- netmon-mysql
networks:
- netmon-network
image: daqem/netmon-snmp-polling-service

netmon-snmp-test-agent:
build: Tests/SNMPTestAgent
Expand All @@ -85,6 +91,7 @@ services:
- "161:161/udp"
networks:
- netmon-network
image: daqem/netmon-snmp-test-agent

netmon-mongo:
image: mongo
Expand Down

0 comments on commit 406c5b5

Please sign in to comment.