initial manyfold
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

This commit is contained in:
traveler 2026-04-28 15:10:54 -05:00
parent f62e2f0be4
commit 7088b84b40

66
swarm/manyfold.yaml Normal file
View file

@ -0,0 +1,66 @@
version: "3"
services:
app:
image: ghcr.io/manyfold3d/manyfold:latest
ports:
- 3214:3214
volumes:
# Uncomment to add a filesystem volume for your model library (or multiple if
# you want multiple libraries), in the form <local_path>:<container_path>.
# The local path could be a folder that already contains models, in which case Manyfold
# will scan and import them, or it could be empty.
# The container path can be anything; you will need to enter it in the "new library" form.
# - /local/path/to/your/models:/models
environment:
PUID: 1000 # The ID of the user the app will run as
PGID: 1000 # The ID of the group the app will run as
SECRET_KEY_BASE: a_nice_long_random_string
REDIS_URL: redis://redis:6379/1
# Database connection details; we recommend using a separate PostgreSQL
# server for best performance
DATABASE_ADAPTER: postgresql
DATABASE_HOST: postgres
DATABASE_PORT: 5432
DATABASE_USER: manyfold
DATABASE_PASSWORD: F@lcon13
DATABASE_NAME: manyfold
# "mysql2" is also available, and you can specify all details in a
# single DATABASE_URL variable if you prefer:
# DATABASE_URL: {adapter}://{user}:{password}@{host}/{name}
# You can also use the "sqlite3" adapter if you don't want to run a separate
# database server. If you do, specify a path to your database file in DATABASE_NAME,
# and make sure it's on a persistent volume! Host, user and password aren't required.
# DATABASE_URL: sqlite3:/config/manyfold.sqlite3
# For details of other optional environment variables, including features such
# as multiuser mode, visit https://manyfold.app/sysadmin/configuration.html
depends_on:
- postgres
- redis
networks:
- manyfold
- netgrimoire
links:
- postgres
- redis
postgres:
image: postgres:15
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: manyfold
POSTGRES_PASSWORD: F@lcon13
restart: on-failure
networks:
- manyfold
redis:
image: redis:7
restart: on-failure
networks:
- manyfold