We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4684278 commit f6d3552Copy full SHA for f6d3552
dbsamples-0.1/world/docker-compose.yaml
@@ -0,0 +1,16 @@
1
+version: '2'
2
+
3
+services:
4
+ postgresql:
5
+ image: 'docker.io/bitnami/postgresql:11-debian-10'
6
+ ports:
7
+ - '5432:5432'
8
+ volumes:
9
+ - 'postgresql_data:/bitnami/postgresql'
10
+ # - ./schema.sql:/docker-entrypoint-initdb.d/schema.sql
11
+ environment:
12
+ - 'POSTGRES_USER=postgres'
13
+ - 'ALLOW_EMPTY_PASSWORD=yes'
14
+volumes:
15
+ postgresql_data:
16
+ driver: local
dbsamples-0.1/world/world.sql renamed to dbsamples-0.1/world/schema.sql
@@ -7,6 +7,7 @@
BEGIN;
SET client_encoding = 'LATIN1';
CREATE TABLE city (
0 commit comments