2020-06-05 17:07:38 +02:00
|
|
|
version: '2.2'
|
2019-05-14 12:05:43 -07:00
|
|
|
|
|
|
|
services:
|
2020-03-09 16:50:28 +00:00
|
|
|
postgres:
|
2019-08-12 22:02:03 -07:00
|
|
|
image: postgres:12-alpine
|
2019-05-14 12:05:43 -07:00
|
|
|
environment:
|
2019-08-18 16:39:19 +02:00
|
|
|
- POSTGRES_USER=lemmy
|
2019-12-28 16:06:37 -05:00
|
|
|
- POSTGRES_PASSWORD=password
|
2019-08-18 16:39:19 +02:00
|
|
|
- POSTGRES_DB=lemmy
|
2019-08-12 22:02:03 -07:00
|
|
|
volumes:
|
2020-03-09 16:50:28 +00:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
2019-11-21 11:29:59 -08:00
|
|
|
restart: always
|
2020-03-09 16:50:28 +00:00
|
|
|
|
2019-05-14 12:05:43 -07:00
|
|
|
lemmy:
|
2020-06-22 19:32:30 -04:00
|
|
|
image: dessalines/lemmy:v0.6.82
|
2019-05-14 12:05:43 -07:00
|
|
|
ports:
|
2019-10-16 11:01:47 +02:00
|
|
|
- "127.0.0.1:8536:8536"
|
2019-09-19 18:01:43 -07:00
|
|
|
restart: always
|
2020-03-13 11:08:42 -04:00
|
|
|
environment:
|
2020-03-20 22:22:53 -04:00
|
|
|
- RUST_LOG=error
|
2019-12-17 22:35:48 +01:00
|
|
|
volumes:
|
2020-04-10 16:55:57 -04:00
|
|
|
- ./lemmy.hjson:/config/config.hjson
|
2019-08-20 19:43:30 +02:00
|
|
|
depends_on:
|
2020-03-09 16:50:28 +00:00
|
|
|
- postgres
|
2020-06-22 12:53:39 -04:00
|
|
|
- pictrs
|
2020-03-09 16:50:28 +00:00
|
|
|
- iframely
|
|
|
|
|
2020-06-22 08:31:15 -04:00
|
|
|
pictrs:
|
|
|
|
image: asonix/pictrs:v0.1.13-r0
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8537:8080"
|
|
|
|
user: 991:991
|
2019-09-07 20:42:01 -07:00
|
|
|
volumes:
|
2020-06-22 08:31:15 -04:00
|
|
|
- ./volumes/pictrs:/mnt
|
2019-11-21 11:29:59 -08:00
|
|
|
restart: always
|
2020-03-09 16:50:28 +00:00
|
|
|
|
|
|
|
iframely:
|
2020-02-17 11:18:01 -05:00
|
|
|
image: dogbin/iframely:latest
|
|
|
|
ports:
|
2020-03-09 16:50:28 +00:00
|
|
|
- "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
|
2020-06-05 17:07:38 +02:00
|
|
|
mem_limit: 100m
|