Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Last active January 10, 2021 15:59
Show Gist options
  • Select an option

  • Save narenaryan/07d8ded7a29f085e1e801a72acd4bc24 to your computer and use it in GitHub Desktop.

Select an option

Save narenaryan/07d8ded7a29f085e1e801a72acd4bc24 to your computer and use it in GitHub Desktop.
cursors-tutorial
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