- Copy
env-exampleto.env - Build & running
docker-compose build && docker-compose up - Force recreate container
docker-compose build && docker-compose up --force-recreate base - Running container only
docker-compose up
You can run docker-compose for different environment with selected containers
- Copy
env.sh.exampletoenv.sh - Change to execute script
chmod a+x env.sh - Change environment in
env.shfileENV="development" # (use: "development" or "production" as selected environment) CONTAINER_PRODUCTION="..." # (selected containers will be run in production environment) CONTAINER_DEVELOPMENT="..." # (selected containers will be run in development environment) - Running script
./env.sh