Last active
January 10, 2021 15:59
-
-
Save narenaryan/07d8ded7a29f085e1e801a72acd4bc24 to your computer and use it in GitHub Desktop.
cursors-tutorial
This file contains hidden or 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.9" # optional since v1.27.0 | |
| services: | |
| app: | |
| build: . | |
| depends_on: | |
| - db | |
| environment: | |
| - PYTHONUNBUFFERED=1 | |
| db: | |
| image: postgres:latest | |
| restart: always | |
| environment: | |
| POSTGRES_PASSWORD: mypassword | |
| POSTGRES_DB: dvdrental | |
| volumes: | |
| - ./backup:/tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment