28 lines
587 B
YAML
28 lines
587 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
backend:
|
|
image: registry.bbr-dev.info/template/backend:latest
|
|
restart: on-failure
|
|
depends_on:
|
|
- database
|
|
ports:
|
|
- "5281:5281"
|
|
networks:
|
|
- template
|
|
env_file:
|
|
- .env.docker
|
|
|
|
database:
|
|
image: postgres:14
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_USER=template
|
|
- POSTGRES_PASSWORD=templatePassword
|
|
- POSTGRES_DB=template
|
|
networks:
|
|
- template
|
|
|
|
networks:
|
|
template: |