Skip to content

Commit 0c2cfce

Browse files
author
Eduardo
committed
feat: add docker compose
1 parent 2f60e5e commit 0c2cfce

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docker-compose.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# use in local to create db container
2+
version: '3.8'
3+
4+
services:
5+
postgres:
6+
container_name: 'chaxis'
7+
image: postgres:latest
8+
ports:
9+
- '5432:5432'
10+
environment:
11+
POSTGRES_USER: chaxis
12+
POSTGRES_PASSWORD: root
13+
POSTGRES_DB: chaxis
14+
PGDATA: /data/postgres

0 commit comments

Comments
 (0)