gremlin: auto-fix swarm/manyfold.yaml (8 issues fixed)
Some checks are pending
Deploy on push / detect (push) Waiting to run
Deploy on push / deploy_swarm (push) Blocked by required conditions
Deploy on push / deploy_compose (push) Blocked by required conditions

- Removed version: key
  - Removed depends_on from "app"
  - Fixed PUID to 1964 for "app"
  - Fixed PGID to 1964 for "app"
  - Added top-level networks: block
  - Added homepage label(s) for "app" (href: https://app.netgrimoire.com)
  - Added monitor label(s) for "app" (url: https://app.netgrimoire.com)
  - Added diun.enable: "true" to "app"
This commit is contained in:
traveler 2026-04-28 15:11:03 -05:00
parent 7088b84b40
commit d0611a9521

View file

@ -1,4 +1,3 @@
version: "3"
services: services:
app: app:
@ -13,8 +12,8 @@ services:
# The container path can be anything; you will need to enter it in the "new library" form. # The container path can be anything; you will need to enter it in the "new library" form.
# - /local/path/to/your/models:/models # - /local/path/to/your/models:/models
environment: environment:
PUID: 1000 # The ID of the user the app will run as PUID: "1964" # The ID of the user the app will run as
PGID: 1000 # The ID of the group the app will run as PGID: "1964" # The ID of the group the app will run as
SECRET_KEY_BASE: a_nice_long_random_string SECRET_KEY_BASE: a_nice_long_random_string
REDIS_URL: redis://redis:6379/1 REDIS_URL: redis://redis:6379/1
@ -38,9 +37,7 @@ services:
# For details of other optional environment variables, including features such # For details of other optional environment variables, including features such
# as multiuser mode, visit https://manyfold.app/sysadmin/configuration.html # as multiuser mode, visit https://manyfold.app/sysadmin/configuration.html
depends_on:
- postgres
- redis
networks: networks:
- manyfold - manyfold
- netgrimoire - netgrimoire
@ -64,3 +61,7 @@ services:
restart: on-failure restart: on-failure
networks: networks:
- manyfold - manyfold
networks:
netgrimoire:
external: true