2022-10-06 19:01:19 +00:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
# communication to web and clients
|
|
|
|
lemmyexternalproxy:
|
|
|
|
# communication between lemmy services
|
|
|
|
lemmyinternal:
|
|
|
|
driver: bridge
|
|
|
|
internal: true
|
2019-04-06 05:29:20 +00:00
|
|
|
|
|
|
|
services:
|
2022-10-06 19:01:19 +00:00
|
|
|
proxy:
|
2021-09-17 15:44:20 +00:00
|
|
|
image: nginx:1-alpine
|
2022-10-06 19:01:19 +00:00
|
|
|
networks:
|
|
|
|
- lemmyinternal
|
|
|
|
- lemmyexternalproxy
|
2021-09-17 15:44:20 +00:00
|
|
|
ports:
|
2023-05-12 00:15:12 +00:00
|
|
|
# actual and only port facing any connection from outside
|
2023-06-05 10:43:31 +00:00
|
|
|
# Note, change the left number if port 80 is already in use on your system (or you want to run a reverse proxy outside this config)
|
|
|
|
- "80:80"
|
2023-06-07 02:22:21 +00:00
|
|
|
- "8536:8536"
|
2021-09-17 15:44:20 +00:00
|
|
|
volumes:
|
2023-05-12 00:15:12 +00:00
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro,Z
|
2021-09-17 15:44:20 +00:00
|
|
|
restart: always
|
|
|
|
depends_on:
|
|
|
|
- pictrs
|
|
|
|
- lemmy-ui
|
2020-03-09 16:50:28 +00:00
|
|
|
|
2019-04-06 05:29:20 +00:00
|
|
|
lemmy:
|
2022-10-21 15:13:24 +00:00
|
|
|
# image: dessalines/lemmy:dev
|
2022-10-06 19:01:19 +00:00
|
|
|
# use this to build your local lemmy server image for development
|
|
|
|
# run docker compose up --build
|
2023-05-12 00:15:12 +00:00
|
|
|
build:
|
2023-02-17 06:29:45 +00:00
|
|
|
context: ../
|
|
|
|
dockerfile: docker/Dockerfile
|
2023-05-12 00:15:12 +00:00
|
|
|
# args:
|
2023-02-17 06:29:45 +00:00
|
|
|
# RUST_RELEASE_MODE: release
|
2022-10-06 19:01:19 +00:00
|
|
|
# this hostname is used in nginx reverse proxy and also for lemmy ui to connect to the backend, do not change
|
|
|
|
hostname: lemmy
|
|
|
|
networks:
|
|
|
|
- lemmyinternal
|
2023-06-08 12:30:16 +00:00
|
|
|
- lemmyexternalproxy
|
2019-09-20 01:01:43 +00:00
|
|
|
restart: always
|
2020-03-13 15:08:42 +00:00
|
|
|
environment:
|
2021-10-16 13:33:38 +00:00
|
|
|
- RUST_LOG="warn,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=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"
|
2022-10-06 19:01:19 +00:00
|
|
|
- RUST_BACKTRACE=full
|
2019-12-17 21:35:48 +00:00
|
|
|
volumes:
|
2023-05-12 00:15:12 +00:00
|
|
|
- ./lemmy.hjson:/config/config.hjson:Z
|
2022-10-06 19:01:19 +00:00
|
|
|
depends_on:
|
2020-03-09 16:50:28 +00:00
|
|
|
- postgres
|
2022-10-06 19:01:19 +00:00
|
|
|
- pictrs
|
2020-12-16 14:03:21 +00:00
|
|
|
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-ui:
|
2023-02-03 14:36:18 +00:00
|
|
|
image: dessalines/lemmy-ui:0.17.1
|
2022-10-06 19:01:19 +00:00
|
|
|
# use this to build your local lemmy ui image for development
|
|
|
|
# run docker compose up --build
|
|
|
|
# assuming lemmy-ui is cloned besides lemmy directory
|
2023-05-12 00:15:12 +00:00
|
|
|
# build:
|
|
|
|
# context: ../../lemmy-ui
|
|
|
|
# dockerfile: dev.dockerfile
|
2022-10-06 19:01:19 +00:00
|
|
|
networks:
|
|
|
|
- lemmyinternal
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
2022-10-06 19:01:19 +00:00
|
|
|
# this needs to match the hostname defined in the lemmy service
|
|
|
|
- LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536
|
|
|
|
# set the outside hostname here
|
|
|
|
- LEMMY_UI_LEMMY_EXTERNAL_HOST=localhost:1236
|
2020-09-15 19:26:47 +00:00
|
|
|
- LEMMY_HTTPS=false
|
2022-04-13 11:53:21 +00:00
|
|
|
- LEMMY_UI_DEBUG=true
|
2022-10-06 19:01:19 +00:00
|
|
|
depends_on:
|
2020-09-15 19:26:47 +00:00
|
|
|
- lemmy
|
2022-10-06 19:01:19 +00:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
pictrs:
|
2023-03-20 21:32:31 +00:00
|
|
|
image: asonix/pictrs:0.4.0-beta.19
|
2022-10-06 19:01:19 +00:00
|
|
|
# this needs to match the pictrs url in lemmy.hjson
|
|
|
|
hostname: pictrs
|
|
|
|
# we can set options to pictrs like this, here we set max. image size and forced format for conversion
|
|
|
|
# entrypoint: /sbin/tini -- /usr/local/bin/pict-rs -p /mnt -m 4 --image-format webp
|
|
|
|
networks:
|
|
|
|
- lemmyinternal
|
|
|
|
environment:
|
|
|
|
- PICTRS_OPENTELEMETRY_URL=http://otel:4137
|
|
|
|
- PICTRS__API_KEY=API_KEY
|
|
|
|
- RUST_LOG=debug
|
|
|
|
- RUST_BACKTRACE=full
|
2023-03-20 21:32:31 +00:00
|
|
|
- PICTRS__MEDIA__VIDEO_CODEC=vp9
|
|
|
|
- PICTRS__MEDIA__GIF__MAX_WIDTH=256
|
|
|
|
- PICTRS__MEDIA__GIF__MAX_HEIGHT=256
|
|
|
|
- PICTRS__MEDIA__GIF__MAX_AREA=65536
|
|
|
|
- PICTRS__MEDIA__GIF__MAX_FRAME_COUNT=400
|
2022-10-06 19:01:19 +00:00
|
|
|
user: 991:991
|
|
|
|
volumes:
|
2023-05-12 00:15:12 +00:00
|
|
|
- ./volumes/pictrs:/mnt:Z
|
2022-10-06 19:01:19 +00:00
|
|
|
restart: always
|
2020-03-09 16:50:28 +00:00
|
|
|
|
2020-06-08 17:52:32 +00:00
|
|
|
postgres:
|
2023-01-20 17:15:07 +00:00
|
|
|
image: postgres:15-alpine
|
2022-10-06 19:01:19 +00:00
|
|
|
# this needs to match the database host in lemmy.hson
|
2023-01-20 17:15:07 +00:00
|
|
|
# Tune your settings via
|
|
|
|
# https://pgtune.leopard.in.ua/#/
|
|
|
|
# You can use this technique to add them here
|
|
|
|
# https://stackoverflow.com/a/30850095/1655478
|
2022-10-06 19:01:19 +00:00
|
|
|
hostname: postgres
|
2023-05-12 00:15:12 +00:00
|
|
|
command:
|
|
|
|
[
|
|
|
|
"postgres",
|
|
|
|
"-c",
|
|
|
|
"session_preload_libraries=auto_explain",
|
|
|
|
"-c",
|
|
|
|
"auto_explain.log_min_duration=5ms",
|
|
|
|
"-c",
|
|
|
|
"auto_explain.log_analyze=true",
|
|
|
|
"-c",
|
|
|
|
"track_activity_query_size=1048576",
|
|
|
|
]
|
2022-10-06 19:01:19 +00:00
|
|
|
networks:
|
|
|
|
- lemmyinternal
|
2023-05-12 00:15:12 +00:00
|
|
|
# adding the external facing network to allow direct db access for devs
|
2022-10-06 19:01:19 +00:00
|
|
|
- lemmyexternalproxy
|
2020-07-01 12:54:29 +00:00
|
|
|
ports:
|
2023-05-12 00:15:12 +00:00
|
|
|
# use a different port so it doesnt conflict with potential postgres db 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
|
2019-09-08 03:42:01 +00:00
|
|
|
volumes:
|
2023-05-12 00:15:12 +00:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data:Z
|
2020-06-08 17:52:32 +00:00
|
|
|
restart: always
|