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