# Development
# Quick start
- Clone rodber/chevereto-free (opens new window)
- Run docker-compose up
- Sync code to sync changes
# Reference
- SOURCEis the absolute path to the cloned Chevereto-Free project
- You need to replace SOURCE=~/git/rodber/chevereto-freewith your own path
- SOURCEwill be mounted at- /var/www/source/inside the container
- Chevereto will be available at localhost:8910 (opens new window)
✨ This dev setup mounts SOURCE to provide the application files to the container. We provide a sync system that copies these files on-the-fly to the actual application runner for better isolation.
# docker-compose
Compose file: httpd-php-dev.yml (opens new window)
Alter SOURCE in the commands below to reflect your project path.
# Up
Run this command to spawn (start) Chevereto-Free.
SOURCE=~/git/rodber/chevereto-free \
docker-compose \
    -p chevereto-free-dev \
    -f httpd-php-dev.yml \
    up -d
# Stop
Run this command to stop Chevereto-Free.
SOURCE=~/git/rodber/chevereto-free \
docker-compose \
    -p chevereto-free-dev \
    -f httpd-php-dev.yml \
    stop
# Start
Run this command to start Chevereto-Free if stopped.
SOURCE=~/git/rodber/chevereto-free \
docker-compose \
    -p chevereto-free-dev \
    -f httpd-php-dev.yml \
    start
# Down (uninstall)
Run this command to down Chevereto-Free (stop containers, remove networks and volumes created by it).
SOURCE=~/git/rodber/chevereto-free \
docker-compose \
    -p chevereto-free-dev \
    -f httpd-php-dev.yml \
    down --volumes
# Sync code
Run this command to sync the application code with your working project.
docker exec -it \
    chevereto-free-dev_app \
    bash /var/www/sync.sh
This system will observe for changes in your working project filesystem and it will automatically sync the files inside the container.
Note: This command must keep running to provide the sync functionality. You should close it once you stop working with the source.
# Logs
todo
← Compose
