Skip to content

Commit

Permalink
style: Use the modern standard for Compose file naming
Browse files Browse the repository at this point in the history
  • Loading branch information
fabschurt committed Oct 4, 2024
1 parent c8ea85e commit e596c29
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env.release
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
COMPOSE_FILE=docker-compose.release.yaml
COMPOSE_FILE=compose.release.yaml
DOCKER_IMAGE_PREFIX=${DOCKER_REGISTRY:?}/${DOCKER_IMAGE_NAMESPACE:?}
2 changes: 1 addition & 1 deletion .env.test
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
COMPOSE_FILE=docker-compose.test.yaml
COMPOSE_FILE=compose.test.yaml
DOCKER_IMAGE_PREFIX=docker.test
File renamed without changes.
10 changes: 5 additions & 5 deletions docker-compose.test.yaml → compose.test.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
services:
php7.test:
extends:
file: docker-compose.release.yaml
file: compose.release.yaml
service: php7
build:
target: test

php8.test:
extends:
file: docker-compose.release.yaml
file: compose.release.yaml
service: php8
build:
target: test

node20.test:
extends:
file: docker-compose.release.yaml
file: compose.release.yaml
service: node20
build:
target: test

python3.test:
extends:
file: docker-compose.release.yaml
file: compose.release.yaml
service: python3
build:
target: test

ruby3.test:
extends:
file: docker-compose.release.yaml
file: compose.release.yaml
service: ruby3
build:
target: test

0 comments on commit e596c29

Please sign in to comment.