2
0

docker-compose.dev-ssh.yml 436 B

12345678910111213141516171819
  1. ## Mark Shust's Docker Configuration for Magento
  2. ## (https://github.com/markshust/docker-magento)
  3. ##
  4. ## Version 40.0.0
  5. version: "3"
  6. services:
  7. app:
  8. volumes: &appvolumes
  9. - ./src/nginx.conf.sample:/var/www/html/nginx.conf:cached
  10. ## To sync your SSH key to the container, uncomment:
  11. #- ~/.ssh/id_rsa:/var/www/.ssh/id_rsa:cached
  12. ssh:
  13. image: markoshust/ssh
  14. ports:
  15. - "22:22"
  16. volumes: *appvolumes