mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
786be3fa66
- Adding front_end_dir to settings. - Adding unit test for PasswordResetRequest encryption. - Readme points to lemmy.hjson - Fixing docker prod, dev, and ansible builds. - Removing redundant env files, as all config is now in a single file. - Some formatting fixes.
34 lines
706 B
YAML
Vendored
34 lines
706 B
YAML
Vendored
version: '3.3'
|
|
|
|
services:
|
|
lemmy_db:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
- POSTGRES_USER=lemmy
|
|
- POSTGRES_PASSWORD=password
|
|
- POSTGRES_DB=lemmy
|
|
volumes:
|
|
- lemmy_db:/var/lib/postgresql/data
|
|
restart: always
|
|
lemmy:
|
|
build:
|
|
context: ../../
|
|
dockerfile: docker/dev/Dockerfile
|
|
ports:
|
|
- "127.0.0.1:8536:8536"
|
|
restart: always
|
|
volumes:
|
|
- ../lemmy.hjson:/config/config.hjson:ro
|
|
depends_on:
|
|
- lemmy_db
|
|
lemmy_pictshare:
|
|
image: shtripok/pictshare:latest
|
|
ports:
|
|
- "127.0.0.1:8537:80"
|
|
volumes:
|
|
- lemmy_pictshare:/usr/share/nginx/html/data
|
|
restart: always
|
|
volumes:
|
|
lemmy_db:
|
|
lemmy_pictshare:
|