lemmy/docker/dev/docker-compose.yml

51 lines
999 B
YAML
Raw Normal View History

version: '3.3'
services:
2020-06-08 17:52:32 +00:00
nginx:
image: nginx:1.19-alpine
ports:
- "8536:8536"
volumes:
2020-06-08 17:52:32 +00:00
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- lemmy
- pictrs
- iframely
restart: "always"
lemmy:
build:
context: ../../
dockerfile: docker/dev/Dockerfile
2019-09-20 01:01:43 +00:00
restart: always
2020-03-13 15:08:42 +00:00
environment:
- RUST_LOG=debug
volumes:
- ../lemmy.hjson:/config/config.hjson
2019-04-06 18:08:05 +00:00
depends_on:
- postgres
- iframely
2020-06-08 17:52:32 +00:00
postgres:
image: postgres:12-alpine
environment:
- POSTGRES_USER=lemmy
- POSTGRES_PASSWORD=password
- POSTGRES_DB=lemmy
volumes:
2020-06-08 17:52:32 +00:00
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
pictrs:
image: asonix/pictrs:amd64-v0.1.0-r9
user: 991:991
volumes:
- ./volumes/pictrs:/mnt
restart: always
iframely:
image: dogbin/iframely:latest
volumes:
- ../iframely.config.local.js:/iframely/config.local.js:ro
restart: always