Skip to content

Commit

Permalink
Add docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
True-Evzheniy committed Jul 6, 2023
1 parent f87bf00 commit 801d759
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions JavaScript/9-logger/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'
services:
postgres:
image: postgres:alpine
environment:
POSTGRES_PASSWORD: marcus
POSTGRES_USER: marcus
POSTGRES_DB: example
volumes:
- ./db/structure.sql:/docker-entrypoint-initdb.d/1.sql
- ./db/data.sql://docker-entrypoint-initdb.d/2.sql
ports:
- 5432:5432
restart: always

0 comments on commit 801d759

Please sign in to comment.