forked from A1mDev/hlstatsx-community-edition
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from startersclan/enhancement/development-do-n…
…ot-require-docker-container-build-driver-in-development Enhancement (development): Do not require `docker-container` build driver in development
- Loading branch information
Showing
5 changed files
with
31 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# This is a docker compose override file, for development builds with caching for CI environments | ||
services: | ||
daemon: | ||
build: | ||
cache_from: | ||
- type=local,src=/tmp/.buildx-cache-daemon | ||
cache_to: | ||
- type=local,dest=/tmp/.buildx-cache-daemon,mode=max | ||
|
||
awards: | ||
build: | ||
cache_from: | ||
- type=local,src=/tmp/.buildx-cache-daemon | ||
cache_to: | ||
- type=local,dest=/tmp/.buildx-cache-daemon,mode=max | ||
|
||
web: | ||
build: | ||
cache_from: | ||
- type=local,src=/tmp/.buildx-cache-web | ||
cache_to: | ||
- type=local,dest=/tmp/.buildx-cache-web,mode=max | ||
|
||
heatmaps: | ||
build: | ||
cache_from: | ||
- type=local,src=/tmp/.buildx-cache-web | ||
cache_to: | ||
- type=local,dest=/tmp/.buildx-cache-web,mode=max |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters