RamEx-Flow / docker-compose.yml
Aye10032
Update docker-compose.yml
c8e1f4d
Raw
History Blame Contribute Delete
776 Bytes
services:
ramex:
image: docker.io/aye1032/ramex-standlone:1.0.0
container_name: ramex-standalone
restart: unless-stopped
ports:
- "8000:8000"
environment:
RAMEX_APP_NAME: RamEx Rebuild API
RAMEX_API_PREFIX: /api
RAMEX_DATABASE_PATH: /app/backend/data/ramex.sqlite3
RAMEX_WORKSPACE_ROOT: /app/backend/workspaces
RAMEX_MEDIA_ROOT: /app/backend/media
RAMEX_MEDIA_URL: /media
RAMEX_STATIC_ROOT: /app/backend/static
volumes:
- ramex_data:/app/backend/data
- ramex_workspaces:/app/backend/workspaces
- ramex_media:/app/backend/media
volumes:
ramex_data:
ramex_workspaces:
ramex_media: