https://github.com/dev-crea/docker-and-livereload
Project test for development mode with guard-livereload.
https://github.com/dev-crea/docker-and-livereload
Last synced: 8 months ago
JSON representation
Project test for development mode with guard-livereload.
- Host: GitHub
- URL: https://github.com/dev-crea/docker-and-livereload
- Owner: Dev-Crea
- License: mit
- Created: 2016-01-27T07:49:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-22T09:59:01.000Z (over 10 years ago)
- Last Synced: 2025-01-02T03:25:27.622Z (over 1 year ago)
- Language: Ruby
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# README
This project is an example to configuration between docker, rails and
guard-livereload.
## Using in development mode
```Linux
# Build project :
docker-compose -f docker-compose.yml -f docker-compose.development.yml build
# Launch project :
docker-compose -f docker-compose.yml -f docker-compose.development.yml up
```
## Using in production mode
```Linux
# Build project :
docker-compose -f docker-compose.yml -f docker-compose.production.yml build
# Launch project :
docker-compose -f docker-compose.yml -f docker-compose.production.yml up -d
```
## Tips
```
# Use Rails Console :
docker-compose run web rails c
```