https://github.com/ctlab/phantasus
Raw File
Tip revision: 352afd17e53dcc6d6682988d722127ba8a2190bd authored by Alexey Sergushichev on 29 March 2024, 23:37:48 UTC
Skipping absent file when generating counts index
Tip revision: 352afd1
docker-compose.yml
version: "2"
services:
    phantasus:
        env_file:
            - .env
        image: alserglab/phantasus
        ports:
            - "8000:8000"
        volumes:
           - type: bind
             source: $PHANTASUS_CONFIG_DIR
             target: /etc/R/phantasus
           - type: bind
             source: $PHANTASUS_CACHE_DIR
             target: /var/phantasus/cache
           - type: bind
             source: $PHANTASUS_PRELOADED_DIR
             target: /var/phantasus/preloaded


back to top