Skip to content

Commit 8a18964

Browse files
committed
Added docker-compose-publish.yml
1 parent 64c983b commit 8a18964

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docker-compose-publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: '3'
2+
3+
services:
4+
fpm:
5+
build:
6+
context: php${PHP_VERSION}/fpm
7+
args:
8+
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
9+
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
10+
PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
11+
image: readymadehost/symfony-dev-docker-php${PHP_VERSION}-fpm:latest
12+
13+
cli:
14+
build:
15+
context: php${PHP_VERSION}/cli
16+
args:
17+
NODE_VERSION: ${NODE_VERSION}
18+
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
19+
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
20+
PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
21+
image: readymadehost/symfony-dev-docker-php${PHP_VERSION}-cli:latest

0 commit comments

Comments
 (0)