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
# 1. Absoulute path | |
build: . | |
# 2. Relative path | |
build: ../path/to/app/ | |
# 3. Git repo URL | |
build: https://github.com/docker/rootfs.git | |
# 4. Git repo URL with branch | |
build: https://github.com/docker/rootfs.git#develop | |
# 5. Git repo URL with access token (for accessing private repos) | |
build: https://<ACCESS_TOKEN>:@github.com/docker/rootfs.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment