2019-08-21 22:29:35 +00:00
|
|
|
version: '3.3'
|
2019-04-06 05:29:20 +00:00
|
|
|
|
|
|
|
services:
|
2020-03-09 16:50:28 +00:00
|
|
|
postgres:
|
2019-08-13 05:02:03 +00:00
|
|
|
image: postgres:12-alpine
|
2019-04-06 05:29:20 +00:00
|
|
|
environment:
|
2019-08-20 23:20:46 +00:00
|
|
|
- POSTGRES_USER=lemmy
|
2019-12-28 21:06:37 +00:00
|
|
|
- POSTGRES_PASSWORD=password
|
2019-08-20 23:20:46 +00:00
|
|
|
- POSTGRES_DB=lemmy
|
2019-08-13 05:02:03 +00:00
|
|
|
volumes:
|
2020-03-09 16:50:28 +00:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
2019-11-21 19:29:59 +00:00
|
|
|
restart: always
|
2020-03-09 16:50:28 +00:00
|
|
|
|
2019-04-06 05:29:20 +00:00
|
|
|
lemmy:
|
|
|
|
build:
|
2019-08-16 01:05:49 +00:00
|
|
|
context: ../../
|
|
|
|
dockerfile: docker/dev/Dockerfile
|
2019-04-06 05:29:20 +00:00
|
|
|
ports:
|
2019-10-16 09:01:47 +00:00
|
|
|
- "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
|
2019-12-17 21:35:48 +00:00
|
|
|
volumes:
|
2020-04-10 20:55:57 +00:00
|
|
|
- ../lemmy.hjson:/config/config.hjson
|
2019-04-06 18:08:05 +00:00
|
|
|
depends_on:
|
2020-03-09 16:50:28 +00:00
|
|
|
- postgres
|
|
|
|
- pictshare
|
|
|
|
- iframely
|
|
|
|
|
|
|
|
pictshare:
|
2020-06-02 23:29:29 +00:00
|
|
|
image: hascheksolutions/pictshare:latest
|
2019-09-08 03:42:01 +00:00
|
|
|
ports:
|
2019-10-16 09:01:47 +00:00
|
|
|
- "127.0.0.1:8537:80"
|
2019-09-08 03:42:01 +00:00
|
|
|
volumes:
|
2020-03-09 16:50:28 +00:00
|
|
|
- ./volumes/pictshare:/usr/share/nginx/html/data
|
2019-11-21 19:29:59 +00:00
|
|
|
restart: always
|
2020-03-09 16:50:28 +00:00
|
|
|
|
|
|
|
iframely:
|
2020-02-17 16:18:01 +00:00
|
|
|
image: dogbin/iframely:latest
|
|
|
|
ports:
|
2020-03-09 16:50:28 +00:00
|
|
|
- "127.0.0.1:8061:80"
|
2020-02-17 16:18:01 +00:00
|
|
|
volumes:
|
|
|
|
- ../iframely.config.local.js:/iframely/config.local.js:ro
|
|
|
|
restart: always
|