From c27ba7c5cf5f2cc2ed0969d005ccb128fcb17ab5 Mon Sep 17 00:00:00 2001 From: eternal-flame-AD Date: Fri, 1 Nov 2024 18:44:36 -0500 Subject: [PATCH] consistent ownership Signed-off-by: eternal-flame-AD --- compose_example.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/compose_example.yml b/compose_example.yml index 98aa5fd18e..152717d783 100644 --- a/compose_example.yml +++ b/compose_example.yml @@ -2,6 +2,8 @@ services: nyuukyou: build: yume-mods/nyuukyou restart: always + user: "${MISSKEY_UID}:${MISSKEY_GID}" + profiles: [web] links: - web depends_on: @@ -16,8 +18,14 @@ services: - ./nyuukyou:/store web: - build: . + build: + context: . + args: + - UID: "${MISSKEY_UID}" + - GID: "${MISSKEY_GID}" + profiles: [web] restart: always + user: "${MISSKEY_UID}:${MISSKEY_GID}" links: - db - redis @@ -42,6 +50,7 @@ services: redis: restart: always image: redis:7-alpine + user: "${MISSKEY_UID}:${MISSKEY_GID}" networks: - internal_network volumes: @@ -54,6 +63,7 @@ services: db: restart: always image: postgres:15-alpine + user: "${MISSKEY_UID}:${MISSKEY_GID}" networks: - internal_network env_file: