Skip to content

Commit

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

0 comments on commit 6ddd1fa

Please sign in to comment.