Skip to content

Commit

Permalink
Cleanup docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
brusch committed Apr 14, 2022
1 parent f780cf1 commit 240adf3
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docker-compose.yml → docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.4'
services:
redis:
image: redis:alpine
Expand All @@ -19,7 +18,7 @@ services:
nginx:
image: nginx:stable-alpine
ports:
- 80:80
- "80:80"
volumes:
- .:/var/www/html:ro
- ./.docker/nginx.conf:/etc/nginx/conf.d/default.conf:ro
Expand All @@ -35,8 +34,8 @@ services:
depends_on:
- db
volumes:
- .:/var/www/html:cached
- pimcore-tmp-storage:/tmp:cached
- .:/var/www/html
- pimcore-tmp-storage:/tmp

php-fpm-debug:
#user: '1000:1000' # set to your uid:gid
Expand All @@ -47,16 +46,16 @@ services:
depends_on:
- db
volumes:
- .:/var/www/html:cached
- pimcore-tmp-storage:/tmp:cached
- .:/var/www/html
- pimcore-tmp-storage:/tmp

supervisord:
#user: '1000:1000' # set to your uid:gid
image: pimcore/pimcore:PHP8.1-supervisord
depends_on:
- db
volumes:
- .:/var/www/html:cached
- .:/var/www/html
- ./.docker/supervisord.conf:/etc/supervisor/conf.d/pimcore.conf:ro


Expand Down

0 comments on commit 240adf3

Please sign in to comment.