Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .data/c360-fashion-retail/compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3.8'

services:
postgres:
image: postgres:15
container_name: axiomretailfashion_postgres
environment:
POSTGRES_DB: retail_fashion
PGUSER: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./postgres:/docker-entrypoint-initdb.d
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5


volumes:
postgres_data:
1,125 changes: 1,125 additions & 0 deletions .data/c360-fashion-retail/generate_complete_dataset.py

Large diffs are not rendered by default.

Loading
Loading