envorigin 1.12.0

Explain where environment variables come from — Docker Compose, GitHub Actions, GitLab CI, CircleCI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
services:
  web:
    image: nginx
    env_file:
      - ./env/web.env
      - path: ./env/overrides.env
        required: false
    environment:
      P: compose_explicit
      W: compose_explicit
      Y:
  worker:
    image: busybox