compose.yaml 498 B

1234567891011121314151617181920212223242526272829
  1. services:
  2. from_env:
  3. image: alpine
  4. configs:
  5. - source: from_env
  6. target: /from_env
  7. command: cat /from_env
  8. from_file:
  9. image: alpine
  10. configs:
  11. - source: from_file
  12. target: /from_file
  13. command: cat /from_file
  14. inlined:
  15. image: alpine
  16. configs:
  17. - source: inlined
  18. target: /inlined
  19. command: cat /inlined
  20. configs:
  21. from_env:
  22. environment: CONFIG
  23. from_file:
  24. file: config.txt
  25. inlined:
  26. content: This is my $CONFIG