Skip to content

Commit

Permalink
changed action
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoGuedes01 committed Oct 19, 2023
1 parent d5361ae commit c29197a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-test-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Build Docker Image
run: docker build -t preprocessing-webservice:ci .
run: docker-compose build .

- name: Run Docker Compose Up
run: docker-compose up -d
7 changes: 5 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ version: '3'

services:
preprocessing-ws:
image: preprocessing-webservice:ci
build:
context: .
dockerfile: Dockerfile # If your Dockerfile is named something different, replace it here.
container_name: 'preprocessing-webservice'
image: preprocessing-webservice:ci
environment:
- PORT=3000
- ENV=prod
ports:
- "3010:3000"
- "3010:3000"

0 comments on commit c29197a

Please sign in to comment.