ISSUE-33 #96

Merged
hitanshu merged 88 commits from kruti/CFTunnels:ISSUE-33 into test 2026-01-14 17:26:26 +00:00
2 changed files with 17 additions and 1 deletions
Showing only changes of commit 54320b8085 - Show all commits

View File

@ -19,7 +19,7 @@ services:
restart: unless-stopped
postgres:
image: postgres:15-alpine
container_name: cftunnel-db
container_name: cftunnel-db-${ENV}
environment:
POSTGRES_DB: cftunnel
POSTGRES_USER: ${POSTGRES_USERNAME}

View File

@ -0,0 +1,16 @@
services:
postgres:
image: postgres
container_name: cftunnel-db
restart: always
environment:
POSTGRES_DB: cftunnel
POSTGRES_USER: root
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: