https://github.com/ctlab/phantasus
Raw File
Tip revision: 38ac198b6bdc33e999926131506aac4f1040110f authored by Alexey Sergushichev on 10 March 2024, 22:55:01 UTC
Update README.md
Tip revision: 38ac198
docker-compose.yml
version: "2"
services:
    phantasus:
        env_file:
            - .env
        image: asergushichev/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