lemmy/docker/dev/docker-compose.yml

57 lines
1.4 KiB
YAML
Raw Normal View History

version: '3.3'
services:
nginx:
image: nginx:1-alpine
ports:
- "1236:1236"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
restart: always
depends_on:
- pictrs
- lemmy-ui
lemmy:
image: lemmy-dev:latest
ports:
2020-08-31 18:39:01 +00:00
- "8536:8536"
2019-09-20 01:01:43 +00:00
restart: always
2020-03-13 15:08:42 +00:00
environment:
- RUST_LOG="warn,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=debug,lemmy_db_queries=debug,lemmy_db_schema=debug,lemmy_db_views=debug,lemmy_db_views_actor=debug,lemmy_db_views_moderator=debug,lemmy_routes=debug,lemmy_utils=debug,lemmy_websocket=debug"
volumes:
- ../lemmy.hjson:/config/config.hjson
2019-04-06 18:08:05 +00:00
depends_on:
- pictrs
- postgres
lemmy-ui:
image: dessalines/lemmy-ui:dev
2020-10-19 10:18:05 +00:00
restart: always
environment:
- LEMMY_INTERNAL_HOST=lemmy:8536
- LEMMY_EXTERNAL_HOST=localhost:1234
- LEMMY_HTTPS=false
depends_on:
- lemmy
2020-06-08 17:52:32 +00:00
postgres:
image: postgres:12-alpine
ports:
# use a different port so it doesnt conflict with postgres running on the host
2020-08-31 18:39:01 +00:00
- "5433:5432"
2020-06-08 17:52:32 +00:00
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:
2021-05-28 15:51:09 +00:00
image: asonix/pictrs:v0.2.6-r2
2020-06-08 17:52:32 +00:00
user: 991:991
volumes:
- ./volumes/pictrs:/mnt
restart: always