Question

How to pass app environment variables to a Docker container?

I am using App Platform to deploy Spring Boot with Docker. I want to pass a variable to my Spring Boot app.

File: app.yml

name: my-app-name
region: ams3
services:
  - dockerfile_path: Dockerfile
    github:
      branch: BRANCH_NAME
      deploy_on_push: true
      repo: my_name/my_repo
    name: web

File: Dockerfile

FROM gradle:7.5-jdk17-alpine AS build
COPY --chown=gradle:gradle . /home/gradle/src
WORKDIR /home/gradle/src
ENV ACTIVE_PROFILE=APP_ACTIVE_PROFILE
RUN sh ./gradlew web:build --no-daemon

I want to pass APP_ACTIVE_PROFILE which is defined in my App-Level Environment Variables to my docker file.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
March 19, 2023

Hi there,

I recently answered a similar question here:

https://www.digitalocean.com/community/questions/do-app-platform-env-vars-not-available-during-build

As you ar using a Dockerfile, this passes variables down to the docker build process (with a --build-arg parameter) so you can access the values of the environment variables using the ARG keyword in your Dockerfile as you normally would if you were building this on a local machine.

For more information on how to use environment variables with a Dockerfile and the App Platform I could suggest the docs here:

https://docs.digitalocean.com/products/app-platform/reference/dockerfile/#environment-variables

Hope that this helps!

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

card icon
Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Sign up
card icon
Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We’d like to help.

Learn more
card icon
Become a contributor

You get paid; we donate to tech nonprofits.

Learn more
Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow – whether you’re running one virtual machine or ten thousand.

Learn more ->
DigitalOcean Cloud Control Panel
Get started for free

Enter your email to get $200 in credit for your first 60 days with DigitalOcean.

New accounts only. By submitting your email you agree to our Privacy Policy.

© 2023 DigitalOcean, LLC.