Skip to content

Commit

Permalink
Merge pull request #139 from startersclan/fix/tests-fix-integration-t…
Browse files Browse the repository at this point in the history
…ests-to-not-use-a-non-existent-image

Fix (tests): Fix integration tests to not use a non-existent image
  • Loading branch information
leojonathanoh authored Nov 22, 2023
2 parents 4ee83e5 + 78ba0ef commit 3b84982
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
{
"label": "Test (prod1)",
"type": "shell",
"command": "./test/test.sh prod 1",
"command": "./test/test.sh prod1 1",
"group": "build"
},
{
"label": "Test (prod2)",
"type": "shell",
"command": "./test/test.sh prod 1",
"command": "./test/test.sh prod2 1",
"group": "build"
},
{
Expand Down
5 changes: 5 additions & 0 deletions docs/bf2hub-bf2stats-example/docker-compose.build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# This is a docker compose override file, for production builds with caching for CI environments
services:
bf2:
image: startersclan/docker-bf2:v1.5.3153.0
volumes:
- ../../src/python:/server/bf2/python # Mount the python files

asp:
build:
dockerfile: Dockerfile.asp
Expand Down
5 changes: 5 additions & 0 deletions docs/full-bf2-stack-example/docker-compose.build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# This is a docker compose override file, for production builds with caching for CI environments
services:
bf2:
image: startersclan/docker-bf2:v1.5.3153.0
volumes:
- ../../src/python:/server/bf2/python # Mount the python files

asp:
build:
dockerfile: Dockerfile.asp
Expand Down

0 comments on commit 3b84982

Please sign in to comment.