lemmy/docker/dev/docker-compose.yml

47 lines
922 B
YAML
Raw Normal View History

version: '3.3'
services:
lemmy:
build:
context: ../../
dockerfile: docker/dev/Dockerfile
ports:
- "127.0.0.1:8536:8536"
2019-09-20 01:01:43 +00:00
restart: always
2020-03-13 15:08:42 +00:00
environment:
- RUST_LOG=debug
volumes:
- ../lemmy.hjson:/config/config.hjson
2019-04-06 18:08:05 +00:00
depends_on:
- pictrs
- postgres
- iframely
2020-06-08 17:52:32 +00:00
postgres:
image: postgres:12-alpine
environment:
- POSTGRES_USER=lemmy
- POSTGRES_PASSWORD=password
- POSTGRES_DB=lemmy
volumes:
2020-06-08 17:52:32 +00:00
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
pictrs:
2020-06-22 12:31:15 +00:00
image: asonix/pictrs:v0.1.13-r0
ports:
- "127.0.0.1:8537:8080"
2020-06-08 17:52:32 +00:00
user: 991:991
volumes:
- ./volumes/pictrs:/mnt
restart: always
iframely:
image: dogbin/iframely:latest
ports:
- "127.0.0.1:8061:80"
volumes:
- ../iframely.config.local.js:/iframely/config.local.js:ro
restart: always