File size: 776 Bytes
4d3059f
 
c8e1f4d
4d3059f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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: