Skip to content

Instantly share code, notes, and snippets.

@r3cha
r3cha / compose.yaml
Last active August 16, 2024 09:02
Docker compose
name: Initapp-rails
services:
app:
image: initapp-rails
build:
context: .
target: development
env_file:
- .docker.env
@r3cha
r3cha / docker-compose.css-and-js.yml
Last active August 12, 2024 09:31
Two separate services for assets compilation with cssbundling-rails and jsbundling-rails
services:
css:
image: initapp-rails
env_file:
- .docker.env
- .env
volumes:
- ./:/app:c
- cache:/app/tmp/cache:d
- bundle:/usr/local/bundle:ro