lemmy/docker/prod/docker-compose.yml

40 lines
874 B
YAML
Raw Normal View History

version: '3.3'
services:
lemmy_db:
image: postgres:12-alpine
environment:
2019-08-18 14:39:19 +00:00
- POSTGRES_USER=lemmy
- POSTGRES_PASSWORD=password
2019-08-18 14:39:19 +00:00
- POSTGRES_DB=lemmy
volumes:
- lemmy_db:/var/lib/postgresql/data
restart: always
lemmy:
2020-03-08 05:46:15 +00:00
image: dessalines/lemmy:v0.6.33
ports:
- "127.0.0.1:8536:8536"
2019-09-20 01:01:43 +00:00
restart: always
volumes:
- ./lemmy.hjson:/config/config.hjson:ro
depends_on:
- lemmy_db
lemmy_pictshare:
2019-11-02 06:45:43 +00:00
image: shtripok/pictshare:latest
ports:
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
restart: always
lemmy_iframely:
image: dogbin/iframely:latest
ports:
- "127.0.0.1:8061:8061"
volumes:
- ./iframely.config.local.js:/iframely/config.local.js:ro
restart: always
volumes:
lemmy_db:
lemmy_pictshare:
lemmy_iframely: