diff options
| author | Matthieu Pignolet <matthieu@matthieu-dev.xyz> | 2023-01-20 16:38:10 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 16:38:10 +0400 |
| commit | ea1d345147759a4e2822c4145a87485f10d56a69 (patch) | |
| tree | 5e152f2cd776babea7ad9a6c87b84d8012a39ea4 /docker-compose.yaml | |
| parent | 98420c50a81fccab924f646b1f8dd1e55988a4a5 (diff) | |
Draft: New cross building for docker images (#37)
* Add .circleci/config.yml
* base
* base
* add architectures and cross build
* fix clippy warnings
Diffstat (limited to 'docker-compose.yaml')
| -rw-r--r-- | docker-compose.yaml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index 04ec54d..e222c20 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -21,7 +21,9 @@ services: x-bake: platforms: - linux/amd64 - - linux/arm64 + - linux/arm64/v8 + - linux/arm/v7 + - linux/arm/v6 args: - COMPONENT=cache volumes: @@ -43,7 +45,9 @@ services: x-bake: platforms: - linux/amd64 - - linux/arm64 + - linux/arm64/v8 + - linux/arm/v7 + - linux/arm/v6 volumes: - ./config/default.yml:/config/default.yml environment: @@ -62,7 +66,9 @@ services: x-bake: platforms: - linux/amd64 - - linux/arm64 + - linux/arm64/v8 + - linux/arm/v7 + - linux/arm/v6 volumes: - ./config/default.yml:/config/default.yml environment: @@ -85,7 +91,9 @@ services: x-bake: platforms: - linux/amd64 - - linux/arm64 + - linux/arm64/v8 + - linux/arm/v7 + - linux/arm/v6 volumes: - ./config/default.yml:/config/default.yml environment: @@ -106,7 +114,9 @@ services: x-bake: platforms: - linux/amd64 - - linux/arm64 + - linux/arm64/v8 + - linux/arm/v7 + - linux/arm/v6 volumes: - ./config/default.yml:/config/default.yml environment: |
