1
0

volume-tmpfs.feature 612 B

1234567891011121314151617181920212223
  1. Feature: Volume: tmpfs
  2. Background:
  3. Given a compose file
  4. """
  5. services:
  6. svc:
  7. image: busybox
  8. volumes:
  9. - type: tmpfs
  10. target: /volumes/tmpfs
  11. tmpfs:
  12. size: 2M
  13. mode: 0o647
  14. """
  15. Scenario: tmpfs Permissions Set
  16. When I run "compose run --rm svc stat -c "%a" /volumes/tmpfs"
  17. Then the output contains "647"
  18. Scenario: tmpfs Size Set
  19. When I run "compose run --rm svc sh -c 'df /volumes/tmpfs | tail -n1 | awk '"'"'{print $4}'"'"'' "
  20. Then the output contains "2048"