Skip to content

Instantly share code, notes, and snippets.

@Syex
Created February 1, 2022 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Syex/830738d27553135c9947fdf75c899994 to your computer and use it in GitHub Desktop.
Save Syex/830738d27553135c9947fdf75c899994 to your computer and use it in GitHub Desktop.
version: "3.9"
services:
api_service:
build: .
restart: always
ports:
- 8080:8080
depends_on:
- db
db:
image: "postgres:latest"
restart: always
ports:
- 5432:5432
volumes:
- db-data:/var/lib/postgresql/data/
volumes:
db-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment