docker-compose.override.yaml.dist 573 B

123456789101112131415161718192021
  1. version: '3.8'
  2. services:
  3. php-7.1: &php
  4. build:
  5. args:
  6. DOCKER_USER_ID: 1000 # replace with your user id (most likely 1000)
  7. DOCKER_GROUP_ID: 1000 # replace with your group id (most likely 1000)
  8. user: 1000:1000 # replace with your user and group ids (most likely 1000:1000)
  9. extra_hosts:
  10. # Required for Docker Linux until natively supported.
  11. # See https://github.com/docker/for-linux/issues/264
  12. host.docker.internal: 172.17.0.1
  13. php-7.2:
  14. <<: *php
  15. php-7.3:
  16. <<: *php
  17. php-7.4:
  18. <<: *php
  19. php-8.0:
  20. <<: *php