mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-22 00:06:34 +03:00
20 lines
369 B
YAML
20 lines
369 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"
|
|
|
|
redis:
|
|
image: "redis:alpine"
|
|
ports:
|
|
- "6379:6379" |