Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Add: Postgres docker image for local debug deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
amant555 committed Jun 23, 2021
1 parent 9e54387 commit 3e90091
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions postgres.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'
services:
postgresql:
image: postgres:13
container_name: postgresql
ports:
- 5432:5432
environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: '1234'
POSTGRES_DB: mlflow-db
POSTGRES_INITDB_ARGS: "--encoding=UTF-8"
hostname: postgresql
restart: always

0 comments on commit 3e90091

Please sign in to comment.