├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── install.sh ├── install.sql └── update_csvs.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/install.sh -------------------------------------------------------------------------------- /install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/install.sql -------------------------------------------------------------------------------- /update_csvs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorint/AdventureWorks-for-Postgres/HEAD/update_csvs.rb --------------------------------------------------------------------------------