2019-08-21 18:29:35 -04:00
|
|
|
version: '3.3'
|
2019-04-06 01:29:20 -04:00
|
|
|
|
|
|
|
services:
|
2021-09-17 11:44:20 -04:00
|
|
|
nginx:
|
|
|
|
image: nginx:1-alpine
|
|
|
|
ports:
|
|
|
|
- "1236:1236"
|
|
|
|
volumes:
|
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
restart: always
|
|
|
|
depends_on:
|
|
|
|
- pictrs
|
|
|
|
- lemmy-ui
|
2020-03-09 12:50:28 -04:00
|
|
|
|
2019-04-06 01:29:20 -04:00
|
|
|
lemmy:
|
2020-09-02 16:41:49 -04:00
|
|
|
image: lemmy-dev:latest
|
2020-06-09 17:17:24 -04:00
|
|
|
ports:
|
2020-08-31 14:39:01 -04:00
|
|
|
- "8536:8536"
|
2022-01-07 09:53:45 -05:00
|
|
|
- "6669:6669"
|
2019-09-19 21:01:43 -04:00
|
|
|
restart: always
|
2020-03-13 11:08:42 -04:00
|
|
|
environment:
|
2021-10-16 09:33:38 -04: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"
|
2019-12-17 16:35:48 -05:00
|
|
|
volumes:
|
2020-04-10 16:55:57 -04:00
|
|
|
- ../lemmy.hjson:/config/config.hjson
|
2019-04-06 14:08:05 -04:00
|
|
|
depends_on:
|
2020-06-22 12:53:39 -04:00
|
|
|
- pictrs
|
2020-03-09 12:50:28 -04:00
|
|
|
- postgres
|
2022-01-06 14:10:20 -05:00
|
|
|
- otel
|
2020-12-16 09:03:21 -05:00
|
|
|
|
2020-09-15 15:26:47 -04:00
|
|
|
lemmy-ui:
|
2022-04-08 10:20:31 -04:00
|
|
|
image: dessalines/lemmy-ui:0.16.3
|
2020-10-19 06:18:05 -04:00
|
|
|
restart: always
|
2020-09-15 15:26:47 -04:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy:8536
|
2021-09-17 11:44:20 -04:00
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:1234
|
2020-09-15 15:26:47 -04:00
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy
|
2020-03-09 12:50:28 -04:00
|
|
|
|
2020-06-08 13:52:32 -04:00
|
|
|
postgres:
|
|
|
|
image: postgres:12-alpine
|
2020-07-01 08:54:29 -04:00
|
|
|
ports:
|
2020-08-05 12:00:00 -04:00
|
|
|
# use a different port so it doesnt conflict with postgres running on the host
|
2020-08-31 14:39:01 -04:00
|
|
|
- "5433:5432"
|
2020-06-08 13:52:32 -04:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
- POSTGRES_DB=lemmy
|
2019-09-07 23:42:01 -04:00
|
|
|
volumes:
|
2020-06-08 13:52:32 -04:00
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
pictrs:
|
2022-04-04 21:31:17 -04:00
|
|
|
image: asonix/pictrs:0.3.1
|
2020-06-08 13:52:32 -04:00
|
|
|
user: 991:991
|
2022-01-06 14:10:20 -05:00
|
|
|
environment:
|
|
|
|
- PICTRS_OPENTELEMETRY_URL=http://otel:4137
|
2022-01-07 09:53:45 -05:00
|
|
|
ports:
|
|
|
|
- "6670:6669"
|
2020-06-08 13:52:32 -04:00
|
|
|
volumes:
|
|
|
|
- ./volumes/pictrs:/mnt
|
2019-11-21 14:29:59 -05:00
|
|
|
restart: always
|
2022-01-06 14:10:20 -05:00
|
|
|
depends_on:
|
|
|
|
- otel
|
|
|
|
|
|
|
|
otel:
|
|
|
|
image: otel/opentelemetry-collector:latest
|
|
|
|
command: --config otel-local-config.yaml
|
|
|
|
ports:
|
|
|
|
- "4317:4317"
|
|
|
|
volumes:
|
|
|
|
- type: bind
|
|
|
|
source: ./otel.yml
|
|
|
|
target: /otel-local-config.yaml
|
|
|
|
restart: always
|
|
|
|
depends_on:
|
|
|
|
- jaeger
|
|
|
|
|
|
|
|
jaeger:
|
|
|
|
image: jaegertracing/all-in-one:1
|
|
|
|
ports:
|
|
|
|
- "14250:14250"
|
|
|
|
# To view traces, visit http://localhost:16686
|
|
|
|
- "16686:16686"
|
|
|
|
restart: always
|