Created
July 11, 2021 19:02
-
-
Save danielabar/0295c7924a53f26c65d687a9a6d02f16 to your computer and use it in GitHub Desktop.
Debug Github Actions Medium Post Gist 9
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
# .github/workflows/ci.yml | |
services: | |
db: | |
image: postgres:13 | |
env: | |
POSTGRES_PASSWORD: its_a_secret | |
POSTGRES_USER: postgres | |
ports: | |
- 5432:5432 | |
volumes: | |
- /home/runner/work/myapp/myapp:/docker-entrypoint-initdb.d/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment