mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
a17fbc6e61
- Fixes #197
33 lines
664 B
YAML
33 lines
664 B
YAML
version: '2.4'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:12-alpine
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: rrr
|
|
POSTGRES_PASSWORD: rrr
|
|
POSTGRES_DB: rrr
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U rrr"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 20
|
|
lemmy:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- "8536:8536"
|
|
environment:
|
|
LEMMY_FRONT_END_DIR: /app/dist
|
|
DATABASE_URL: postgres://rrr:rrr@db:5432/rrr
|
|
JWT_SECRET: changeme
|
|
HOSTNAME: rrr
|
|
restart: always
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
volumes:
|
|
db:
|