compose.yaml 535 B

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