mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-22 08:16:35 +03:00
15 lines
302 B
YAML
15 lines
302 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
postgres:
|
||
|
image: "postgres"
|
||
|
container_name: "postgres"
|
||
|
environment:
|
||
|
- POSTGRES_HOST=postgres
|
||
|
- POSTGRES_PORT=5432
|
||
|
- POSTGRES_DB=db
|
||
|
- POSTGRES_USER=debug
|
||
|
- POSTGRES_PASSWORD=debug
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
|
||
|
network_mode: "host"
|