2019-08-21 18:29:35 -04:00
|
|
|
version: '3.3'
|
2019-04-06 01:29:20 -04:00
|
|
|
|
|
|
|
services:
|
2020-03-09 12:50:28 -04:00
|
|
|
|
2019-04-06 01:29:20 -04:00
|
|
|
lemmy:
|
|
|
|
build:
|
2019-08-15 21:05:49 -04:00
|
|
|
context: ../../
|
|
|
|
dockerfile: docker/dev/Dockerfile
|
2020-06-09 17:17:24 -04:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8536:8536"
|
2019-09-19 21:01:43 -04:00
|
|
|
restart: always
|
2020-03-13 11:08:42 -04:00
|
|
|
environment:
|
|
|
|
- RUST_LOG=debug
|
2019-12-17 16:35:48 -05:00
|
|
|
volumes:
|
2020-04-10 16:55:57 -04:00
|
|
|
- ../lemmy.hjson:/config/config.hjson
|
2019-04-06 14:08:05 -04:00
|
|
|
depends_on:
|
2020-06-22 12:53:39 -04:00
|
|
|
- pictrs
|
2020-03-09 12:50:28 -04:00
|
|
|
- postgres
|
|
|
|
- iframely
|
|
|
|
|
2020-06-08 13:52:32 -04:00
|
|
|
postgres:
|
|
|
|
image: postgres:12-alpine
|
2020-07-01 08:54:29 -04:00
|
|
|
ports:
|
2020-08-05 12:00:00 -04:00
|
|
|
# use a different port so it doesnt conflict with postgres running on the host
|
|
|
|
- "127.0.0.1:5433:5432"
|
2020-06-08 13:52:32 -04:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
- POSTGRES_DB=lemmy
|
2019-09-07 23:42:01 -04:00
|
|
|
volumes:
|
2020-06-08 13:52:32 -04:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
pictrs:
|
2020-06-22 08:31:15 -04:00
|
|
|
image: asonix/pictrs:v0.1.13-r0
|
2020-06-09 17:17:24 -04:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8537:8080"
|
2020-06-08 13:52:32 -04:00
|
|
|
user: 991:991
|
|
|
|
volumes:
|
|
|
|
- ./volumes/pictrs:/mnt
|
2019-11-21 14:29:59 -05:00
|
|
|
restart: always
|
2020-03-09 12:50:28 -04:00
|
|
|
|
|
|
|
iframely:
|
2020-07-03 14:19:24 -04:00
|
|
|
image: dogbin/iframely:latest
|
2020-06-09 17:17:24 -04:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8061:80"
|
2020-02-17 11:18:01 -05:00
|
|
|
volumes:
|
|
|
|
- ../iframely.config.local.js:/iframely/config.local.js:ro
|
|
|
|
restart: always
|