Environment Variables

Changing or Combining …

If you’ve ever needed to easily switch between different .env files during local development this might be helpful. Recently I needed to find a way to switch between different environment files, .env, to change the location/values I was using for local commands. More specifically I needed to …

Using Environment …

Docker Compose is a powerful tool for orchestrating your Docker environment. Managing environment information can be easier to do if you setup your Docker configuration in the following way. Create a docker-compose.yml file version: '3' services: api: environment: - DB_USER=${DB_USER_NAME} - …