changed to actual postgres version
This commit is contained in:
parent
3dc5b74a8d
commit
1b05ae48ad
|
|
@ -1,13 +1,11 @@
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
container_name: postgres_app
|
container_name: bizmatchdb
|
||||||
image: postgres:15.5-alpine3.19
|
image: postgres:latest
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- bizmatch_volume:/var/lib/postgresql/data
|
- ${PWD}/bizmatchdb-data:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: ${POSTGRES_DB}
|
POSTGRES_DB: ${POSTGRES_DB}
|
||||||
POSTGRES_USER: ${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
|
|
@ -19,8 +17,4 @@ services:
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
bizmatch:
|
bizmatch:
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
volumes:
|
|
||||||
bizmatch_volume:
|
|
||||||
external: true
|
|
||||||
Loading…
Reference in New Issue