mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
907064b94e
- Fixes #46 - Fixes #37
27 lines
559 B
YAML
27 lines
559 B
YAML
version: '2.4'
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: rrr
|
|
POSTGRES_PASSWORD: rrr
|
|
POSTGRES_DB: rrr
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U rrr"]
|
|
interval: 30s
|
|
timeout: 30s
|
|
retries: 3
|
|
lemmy:
|
|
build:
|
|
context: .
|
|
command: /bin/sh -c /app/lemmy
|
|
ports:
|
|
- "8536:8536"
|
|
environment:
|
|
LEMMY_FRONT_END_DIR: /app/dist
|
|
DATABASE_URL: postgres://rrr:rrr@db:5432/rrr
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|