We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit efd0c33Copy full SHA for efd0c33
database/Dockerfile
@@ -0,0 +1,2 @@
1
+FROM postgres
2
+COPY init.sql /docker-entrypoint-initdb.d
database/init.sql
@@ -0,0 +1,9 @@
+CREATE TABLE apparel(
+ name character varying(50)
3
+);
4
+
5
+INSERT INTO apparel (name) VALUES
6
+('Helmet'),
7
+('Boots'),
8
+('Jacket');
9
docker-compose.yml
@@ -0,0 +1,5 @@
+version : '3'
+services:
+ databse:
+ build: ./database
0 commit comments