20 lines
398 B
YAML
20 lines
398 B
YAML
|
version: '3.8'
|
||
|
services:
|
||
|
nats:
|
||
|
container_name: fblx-nats
|
||
|
image: nats
|
||
|
ports:
|
||
|
- 4222:4222
|
||
|
- 6222:6222
|
||
|
- 8222:8222
|
||
|
postgres:
|
||
|
container_name: fblx-pg
|
||
|
image: postgres:15-alpine
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
environment:
|
||
|
- POSTGRES_USER=freeblox
|
||
|
- POSTGRES_PASSWORD=FREEBLOXDataBaseDEV@123
|
||
|
volumes:
|
||
|
- ./database:/var/lib/postgresql/data
|