2020-01-28 11:38:23 -05:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
lemmy:
|
2020-01-31 06:03:26 -05:00
|
|
|
image: {{ lemmy_docker_image }}
|
2020-01-28 11:38:23 -05:00
|
|
|
ports:
|
2020-03-28 18:18:20 -04:00
|
|
|
- "127.0.0.1:8536:8536"
|
2020-01-28 11:38:23 -05:00
|
|
|
restart: always
|
2020-03-13 11:08:42 -04:00
|
|
|
environment:
|
2020-03-20 22:22:53 -04:00
|
|
|
- RUST_LOG=error
|
2020-01-28 11:38:23 -05:00
|
|
|
volumes:
|
|
|
|
- ./lemmy.hjson:/config/config.hjson:ro
|
|
|
|
depends_on:
|
2020-03-09 12:50:28 -04:00
|
|
|
- postgres
|
2020-06-08 13:52:32 -04:00
|
|
|
- pictrs
|
2020-03-09 12:50:28 -04:00
|
|
|
- iframely
|
2020-01-28 11:38:23 -05:00
|
|
|
|
2020-03-09 12:50:28 -04:00
|
|
|
postgres:
|
2020-01-28 11:38:23 -05:00
|
|
|
image: postgres:12-alpine
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD={{ postgres_password }}
|
|
|
|
- POSTGRES_DB=lemmy
|
|
|
|
volumes:
|
2020-03-09 12:50:28 -04:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
2020-01-28 11:38:23 -05:00
|
|
|
restart: always
|
|
|
|
|
2020-06-08 13:52:32 -04:00
|
|
|
pictrs:
|
|
|
|
image: asonix/pictrs:amd64-v0.1.0-r9
|
|
|
|
user: 991:991
|
2020-01-28 11:38:23 -05:00
|
|
|
ports:
|
2020-06-08 13:52:32 -04:00
|
|
|
- "127.0.0.1:8537:8080"
|
2020-01-28 11:38:23 -05:00
|
|
|
volumes:
|
2020-06-08 13:52:32 -04:00
|
|
|
- ./volumes/pictrs:/mnt
|
2020-01-28 11:38:23 -05:00
|
|
|
restart: always
|
|
|
|
|
2020-03-09 12:50:28 -04:00
|
|
|
iframely:
|
2020-02-17 11:18:01 -05:00
|
|
|
image: dogbin/iframely:latest
|
|
|
|
ports:
|
2020-06-09 17:17:24 -04: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-01-31 06:03:26 -05:00
|
|
|
postfix:
|
|
|
|
image: mwader/postfix-relay
|
|
|
|
environment:
|
|
|
|
- POSTFIX_myhostname={{ domain }}
|
2020-03-13 11:08:42 -04:00
|
|
|
restart: "always"
|