Skip to content
Merged

Dev #33

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Please include the Jira Ticket Number and Link for this issue/task.

## Workflow

Owner of the Pull Request will be responsible for merge after all requirements are met, including approval from at least one reviewer. Additional changes made after a review will dismiss any approvals and require re-review of the additional updates. Auto merging can be enabled below if additional changes are likely not to be needed.
Owner of the Pull Request will be responsible for merge after all requirements are met, including approval from at least one reviewer. Additional changes made after a review will dismiss any approvals and require re-review of the additional updates. Auto merging can be enabled below if additional changes are likely not to be needed. The bot will auto assign reviewers to your Pull Request for you.

2 changes: 1 addition & 1 deletion .github/workflows/docker-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
with:
context: .
push: true
tags: codexrems/rems:REMSvDevelopment
tags: codexrems/rems-administrator:REMSvDevelopment
4 changes: 2 additions & 2 deletions .github/workflows/docker-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker Image CD

on:
push:
branches: [ master ]
branches: [ main ]
workflow_dispatch:

jobs:
Expand All @@ -24,4 +24,4 @@ jobs:
with:
context: .
push: true
tags: codexrems/rems:REMSvCurrent
tags: codexrems/rems-administrator:REMSvCurrent
2 changes: 1 addition & 1 deletion .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker Image CI

on:
pull_request:
branches: [ master, dev ]
branches: [ main, dev ]
workflow_dispatch:


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Invocation Docker Image CD

on:
push:
branches: [ master ]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Invocation Docker Image CI

on:
pull_request:
branches: [ master, dev ]
branches: [ main, dev ]
workflow_dispatch:


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-windows-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Windows Docker Image CD

on:
push:
branches: [ master ]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Windows Docker Image CI

on:
pull_request:
branches: [ master, dev ]
branches: [ main, dev ]
workflow_dispatch:


Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ services:


# Create rems container
rems: # Name of our service
rems-administrator: # Name of our service
build:
context: '.'
dockerfile: Dockerfile.dev
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-porter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ services:
- "3005:3005" # Bind port 3000 of host to 3000 of container

# # Create rems container
rems: # Name of our service
image: codexrems/rems:REMSvCurrent
rems-administrator: # Name of our service
image: codexrems/rems-administrator:REMSvCurrent
container_name: rems_porter_rems
ports: # Port binding to host from docker container
- "9015:9015" # Bind port 3000 of host to 3000 of container
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ services:
- "3005:3005" # Bind port 3000 of host to 3000 of container

# # Create rems container
rems: # Name of our service
image: codexrems/rems:REMSvCurrent
rems-administrator: # Name of our service
image: codexrems/rems-administrator:REMSvCurrent
container_name: rems_prod_rems
ports: # Port binding to host from docker container
- "9015:9015" # Bind port 3000 of host to 3000 of container
Expand Down