Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .docker/php.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ARG PHP_VERSION
FROM php:${PHP_VERSION}-cli-alpine

COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
22 changes: 0 additions & 22 deletions .docker/php80.Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions .docker/php81.Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions .docker/php82.Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions .docker/php83.Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions .docker/php84.Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions .docker/php85.Dockerfile

This file was deleted.

9 changes: 6 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

/.docker export-ignore
/.github export-ignore
/tests export-ignore
.gitattributes export-ignore
.gitignore export-ignore
/test export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.editorconfig export-ignore
/AGENTS.md export-ignore
/CLAUDE.md export-ignore
/CODE_OF_CONDUCT.md export-ignore
/CONTRIBUTING.md export-ignore
/compose.yml export-ignore
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.claude/
/.docker_data_hbase
/.idea
/vendor
Expand Down
30 changes: 18 additions & 12 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
services:
php80:
container_name: php-opentsdb-client-lib-php-80
image: php-opentsdb-client-lib-80
build:
context: ./
dockerfile: ./.docker/php80.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.0"
tty: true
working_dir: /app
volumes:
Expand All @@ -14,10 +15,11 @@ services:

php81:
container_name: php-opentsdb-client-lib-php-81
image: php-opentsdb-client-lib-81
build:
context: ./
dockerfile: ./.docker/php81.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.1"
tty: true
working_dir: /app
volumes:
Expand All @@ -27,10 +29,11 @@ services:

php82:
container_name: php-opentsdb-client-lib-php-82
image: php-opentsdb-client-lib-82
build:
context: ./
dockerfile: ./.docker/php82.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.2"
tty: true
working_dir: /app
volumes:
Expand All @@ -40,10 +43,11 @@ services:

php83:
container_name: php-opentsdb-client-lib-php-83
image: php-opentsdb-client-lib-83
build:
context: ./
dockerfile: ./.docker/php83.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.3"
tty: true
working_dir: /app
volumes:
Expand All @@ -53,10 +57,11 @@ services:

php84:
container_name: php-opentsdb-client-lib-php-84
image: php-opentsdb-client-lib-84
build:
context: ./
dockerfile: ./.docker/php84.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.4"
tty: true
working_dir: /app
volumes:
Expand All @@ -66,10 +71,11 @@ services:

php85:
container_name: php-opentsdb-client-lib-php-85
image: php-opentsdb-client-lib-85
build:
context: ./
dockerfile: ./.docker/php85.Dockerfile
dockerfile: ./.docker/php.Dockerfile
args:
PHP_VERSION: "8.5"
tty: true
working_dir: /app
volumes:
Expand Down