lemmy/docker/docker-compose.yml
Dessalines 515fc86fd0 Adding a docker image.
- Instructions added to readme for how to use the simpler small image
too. Fixes #101.
2019-05-14 12:05:43 -07:00

29 lines
596 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: 5s
timeout: 5s
retries: 20
lemmy:
image: dessalines/lemmy:latest
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