2019-12-27 17:25:07 +00:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
2020-03-28 16:30:59 +00:00
|
|
|
nginx:
|
2021-09-02 11:50:20 +00:00
|
|
|
image: nginx:1-alpine
|
2020-03-28 16:30:59 +00:00
|
|
|
ports:
|
|
|
|
- "8540:8540"
|
|
|
|
- "8550:8550"
|
2020-06-03 21:55:32 +00:00
|
|
|
- "8560:8560"
|
2020-08-20 12:44:22 +00:00
|
|
|
- "8570:8570"
|
|
|
|
- "8580:8580"
|
2020-03-28 16:30:59 +00:00
|
|
|
volumes:
|
2020-08-31 15:26:32 +00:00
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
2021-09-17 15:44:20 +00:00
|
|
|
restart: always
|
2020-03-28 16:30:59 +00:00
|
|
|
depends_on:
|
2020-07-01 12:54:29 +00:00
|
|
|
- pictrs
|
2020-09-24 13:50:38 +00:00
|
|
|
- lemmy-alpha-ui
|
|
|
|
- lemmy-beta-ui
|
|
|
|
- lemmy-gamma-ui
|
|
|
|
- lemmy-delta-ui
|
|
|
|
- lemmy-epsilon-ui
|
2020-03-28 16:30:59 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
pictrs:
|
|
|
|
restart: always
|
2022-04-05 01:31:17 +00:00
|
|
|
image: asonix/pictrs:0.3.1
|
2020-07-01 12:54:29 +00:00
|
|
|
user: 991:991
|
|
|
|
volumes:
|
|
|
|
- ./volumes/pictrs_alpha:/mnt
|
|
|
|
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-alpha-ui:
|
2022-05-30 22:32:31 +00:00
|
|
|
image: dessalines/lemmy-ui:0.16.5
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy-alpha:8541
|
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:8541
|
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy-alpha
|
2020-07-01 12:54:29 +00:00
|
|
|
lemmy-alpha:
|
2020-04-10 11:37:35 +00:00
|
|
|
image: lemmy-federation:latest
|
2021-03-01 17:24:11 +00:00
|
|
|
volumes:
|
|
|
|
- ./lemmy_alpha.hjson:/config/config.hjson
|
2019-12-27 17:25:07 +00:00
|
|
|
environment:
|
2020-01-02 23:28:43 +00:00
|
|
|
- RUST_BACKTRACE=1
|
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"
|
2019-12-27 17:25:07 +00:00
|
|
|
depends_on:
|
2020-02-29 02:11:39 +00:00
|
|
|
- postgres_alpha
|
2020-09-15 19:26:47 +00:00
|
|
|
ports:
|
|
|
|
- "8541:8541"
|
2020-02-29 02:11:39 +00:00
|
|
|
postgres_alpha:
|
2022-07-30 03:55:59 +00:00
|
|
|
image: postgres:14-alpine
|
2019-12-27 17:25:07 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
2020-02-29 02:11:39 +00:00
|
|
|
- POSTGRES_PASSWORD=password
|
2019-12-27 17:25:07 +00:00
|
|
|
- POSTGRES_DB=lemmy
|
2020-01-02 23:28:43 +00:00
|
|
|
volumes:
|
2020-02-29 02:11:39 +00:00
|
|
|
- ./volumes/postgres_alpha:/var/lib/postgresql/data
|
2019-12-27 17:25:07 +00:00
|
|
|
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-beta-ui:
|
2022-05-30 22:32:31 +00:00
|
|
|
image: dessalines/lemmy-ui:0.16.5
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy-beta:8551
|
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:8551
|
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy-beta
|
2020-07-01 12:54:29 +00:00
|
|
|
lemmy-beta:
|
2020-04-10 11:37:35 +00:00
|
|
|
image: lemmy-federation:latest
|
2021-03-01 17:24:11 +00:00
|
|
|
volumes:
|
|
|
|
- ./lemmy_beta.hjson:/config/config.hjson
|
2019-12-27 17:25:07 +00:00
|
|
|
environment:
|
2020-01-02 23:28:43 +00:00
|
|
|
- RUST_BACKTRACE=1
|
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"
|
2019-12-27 17:25:07 +00:00
|
|
|
depends_on:
|
2020-02-29 02:11:39 +00:00
|
|
|
- postgres_beta
|
2020-09-15 19:26:47 +00:00
|
|
|
ports:
|
|
|
|
- "8551:8551"
|
2020-02-29 02:11:39 +00:00
|
|
|
postgres_beta:
|
2022-07-30 03:55:59 +00:00
|
|
|
image: postgres:14-alpine
|
2019-12-27 17:25:07 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
2020-02-29 02:11:39 +00:00
|
|
|
- POSTGRES_PASSWORD=password
|
2019-12-27 17:25:07 +00:00
|
|
|
- POSTGRES_DB=lemmy
|
|
|
|
volumes:
|
2020-02-29 02:11:39 +00:00
|
|
|
- ./volumes/postgres_beta:/var/lib/postgresql/data
|
2020-03-14 00:05:42 +00:00
|
|
|
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-gamma-ui:
|
2022-05-30 22:32:31 +00:00
|
|
|
image: dessalines/lemmy-ui:0.16.5
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy-gamma:8561
|
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:8561
|
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy-gamma
|
2020-07-01 12:54:29 +00:00
|
|
|
lemmy-gamma:
|
2020-06-03 21:55:32 +00:00
|
|
|
image: lemmy-federation:latest
|
2021-03-01 17:24:11 +00:00
|
|
|
volumes:
|
|
|
|
- ./lemmy_gamma.hjson:/config/config.hjson
|
2020-06-03 21:55:32 +00:00
|
|
|
environment:
|
|
|
|
- RUST_BACKTRACE=1
|
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"
|
2020-06-03 21:55:32 +00:00
|
|
|
depends_on:
|
|
|
|
- postgres_gamma
|
2020-09-15 19:26:47 +00:00
|
|
|
ports:
|
|
|
|
- "8561:8561"
|
2020-06-03 21:55:32 +00:00
|
|
|
postgres_gamma:
|
2022-07-30 03:55:59 +00:00
|
|
|
image: postgres:14-alpine
|
2020-06-03 21:55:32 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
- POSTGRES_DB=lemmy
|
|
|
|
volumes:
|
|
|
|
- ./volumes/postgres_gamma:/var/lib/postgresql/data
|
|
|
|
|
2020-08-20 12:44:22 +00:00
|
|
|
# An instance with only an allowlist for beta
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-delta-ui:
|
2022-05-30 22:32:31 +00:00
|
|
|
image: dessalines/lemmy-ui:0.16.5
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy-delta:8571
|
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:8571
|
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy-delta
|
2020-08-20 12:44:22 +00:00
|
|
|
lemmy-delta:
|
|
|
|
image: lemmy-federation:latest
|
2021-03-01 17:24:11 +00:00
|
|
|
volumes:
|
|
|
|
- ./lemmy_delta.hjson:/config/config.hjson
|
2020-08-20 12:44:22 +00:00
|
|
|
environment:
|
|
|
|
- RUST_BACKTRACE=1
|
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"
|
2020-08-20 12:44:22 +00:00
|
|
|
depends_on:
|
|
|
|
- postgres_delta
|
2020-09-15 19:26:47 +00:00
|
|
|
ports:
|
|
|
|
- "8571:8571"
|
2020-08-20 12:44:22 +00:00
|
|
|
postgres_delta:
|
2022-07-30 03:55:59 +00:00
|
|
|
image: postgres:14-alpine
|
2020-08-20 12:44:22 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
- POSTGRES_DB=lemmy
|
|
|
|
volumes:
|
|
|
|
- ./volumes/postgres_delta:/var/lib/postgresql/data
|
|
|
|
|
|
|
|
# An instance who has a blocklist, with lemmy-alpha blocked
|
2020-09-15 19:26:47 +00:00
|
|
|
lemmy-epsilon-ui:
|
2022-05-30 22:32:31 +00:00
|
|
|
image: dessalines/lemmy-ui:0.16.5
|
2020-09-15 19:26:47 +00:00
|
|
|
environment:
|
|
|
|
- LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
|
|
|
|
- LEMMY_EXTERNAL_HOST=localhost:8581
|
|
|
|
- LEMMY_HTTPS=false
|
|
|
|
depends_on:
|
|
|
|
- lemmy-epsilon
|
2020-08-20 12:44:22 +00:00
|
|
|
lemmy-epsilon:
|
|
|
|
image: lemmy-federation:latest
|
2021-03-01 17:24:11 +00:00
|
|
|
volumes:
|
|
|
|
- ./lemmy_epsilon.hjson:/config/config.hjson
|
2020-08-20 12:44:22 +00:00
|
|
|
environment:
|
|
|
|
- RUST_BACKTRACE=1
|
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"
|
2020-08-20 12:44:22 +00:00
|
|
|
depends_on:
|
|
|
|
- postgres_epsilon
|
2020-09-15 19:26:47 +00:00
|
|
|
ports:
|
|
|
|
- "8581:8581"
|
2020-08-20 12:44:22 +00:00
|
|
|
postgres_epsilon:
|
2022-07-30 03:55:59 +00:00
|
|
|
image: postgres:14-alpine
|
2020-08-20 12:44:22 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=lemmy
|
|
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
- POSTGRES_DB=lemmy
|
|
|
|
volumes:
|
|
|
|
- ./volumes/postgres_epsilon:/var/lib/postgresql/data
|