2
0

docker-compose.dev-ssh.yml 242 B

123456789101112131415
  1. version: "3"
  2. services:
  3. app:
  4. volumes: &appvolumes
  5. - ./src/nginx.conf.sample:/var/www/html/nginx.conf:cached
  6. phpfpm:
  7. volumes: *appvolumes
  8. ssh:
  9. image: markoshust/ssh
  10. ports:
  11. - "22:22"
  12. volumes: *appvolumes