Created
December 26, 2021 10:51
-
-
Save DerekChia/6bb80f42b7849c028e52594a3565dfa0 to your computer and use it in GitHub Desktop.
Start a container, read and print the environment variable passed in via "environment:"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
hello_world: | |
container_name: ubuntu | |
image: ubuntu:latest | |
environment: | |
VARIABLE_ONE: ONE | |
command: '/bin/sh -c "echo $$VARIABLE_ONE"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment