diff --git a/postgres.yml b/postgres.yml new file mode 100644 index 000000000000..386e49922b36 --- /dev/null +++ b/postgres.yml @@ -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 \ No newline at end of file