Commit 6305eab0 authored by Kyle Muldoon's avatar Kyle Muldoon

adding project files

parent b7a75b5d
FROM postgres:12.2
ENV POSTGRES_PASSWORD=password
COPY ./schema.sql ./docker-entrypoint-initdb.d/schema.sql
EXPOSE 5432
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["postgres"]
DROP TABLE IF EXISTS EMPLOYEE;
CREATE TABLE EMPLOYEE (
ID INT AUTO_INCREMENT PRIMARY KEY,
FIRST_NAME VARCHAR (255) NOT NULL,
LAST_NAME VARCHAR (255) NOT NULL
);
INSERT INTO EMPLOYEE VALUES
( 1, 'John', 'Smith' ),
(2, 'Jane', 'Doe'),
(3, 'Walter', 'Bell');
\ No newline at end of file
employeeservice @ 95a072d4
Subproject commit 95a072d4483fdbc56cc2c9c26ec1bcbd348e1511
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment