Skip to content

Commit

Permalink
Env var fix dcp (#69)
Browse files Browse the repository at this point in the history
* fixed docker-compose

* Environment variables for PHP containers not working under linux
  • Loading branch information
HaaseIT authored Oct 25, 2021
1 parent 6bd2a9f commit 5da58a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
#user: '1000:1000' # set to your uid:gid
image: pimcore/pimcore:PHP8.0-fpm
environment:
- COMPOSER_HOME=/var/www/html
COMPOSER_HOME: /var/www/html
depends_on:
- db
volumes:
Expand All @@ -46,8 +46,8 @@ services:
- .:/var/www/html:cached
- pimcore-tmp-storage:/tmp:cached
environment:
- PHP_IDE_CONFIG="serverName=localhost"
- COMPOSER_HOME=/var/www/html
PHP_IDE_CONFIG: serverName=localhost
COMPOSER_HOME: /var/www/html

supervisord:
#user: '1000:1000' # set to your uid:gid
Expand Down

0 comments on commit 5da58a6

Please sign in to comment.