Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from tfenster/alpha4
Browse files Browse the repository at this point in the history
fix fqin bug
  • Loading branch information
Tobias Fenster authored Jan 3, 2019
2 parents ee5beef + e38652a commit 2f73929
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/Controllers/ContainerController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public async Task<ActionResult<string>> Post(BCContainer container)
repo = $"{container.Repository}/";
if (container.Tag != "")
tag = $":{container.Tag}";
var fqin = $"{reg}{repo}/{container.Image}{tag}";
var fqin = $"{reg}{repo}{container.Image}{tag}";
var image = images.Where(i => i.RepoTags != null && i.RepoTags.Count > 0 && i.RepoTags[0] == fqin).FirstOrDefault();
if (image == null)
{
Expand Down
4 changes: 2 additions & 2 deletions stuff/docker-compose.server2019.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.3"
services:
gui:
image: arssolvendi.azurecr.io/bcinab-gui:alpha3
image: arssolvendi.azurecr.io/bcinab-gui:alpha4
depends_on:
- api
links:
Expand All @@ -13,7 +13,7 @@ services:
- frontend

api:
image: arssolvendi.azurecr.io/bcinab-api:alpha3
image: arssolvendi.azurecr.io/bcinab-api:alpha4
volumes:
- source: '\\.\pipe\docker_engine'
target: '\\.\pipe\docker_engine'
Expand Down
4 changes: 2 additions & 2 deletions stuff/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.3"
services:
gui:
image: arssolvendi.azurecr.io/bcinab-gui:alpha3
image: arssolvendi.azurecr.io/bcinab-gui:alpha4
depends_on:
- api
links:
Expand All @@ -13,7 +13,7 @@ services:
- frontend

api:
image: arssolvendi.azurecr.io/bcinab-api:alpha3
image: arssolvendi.azurecr.io/bcinab-api:alpha4
volumes:
- source: '\\.\pipe\docker_engine_windows'
target: '\\.\pipe\docker_engine'
Expand Down

0 comments on commit 2f73929

Please sign in to comment.