dawarich/docker-compose.yml

55 lines
1.2 KiB
YAML
Raw Normal View History

version: '3'
networks:
development:
services:
dawarich_redis:
image: redis:7.0-alpine
command: redis-server
networks:
- development
volumes:
- shared_data:/var/shared/redis
ports:
- 6379:6379
dawarich_db:
image: postgres:14.2-alpine
container_name: dawarich_db
volumes:
- db_data:/var/lib/postgresql/data
- shared_data:/var/shared
networks:
- development
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5099:5432
dawarich_app:
image: registry.chibi.rodeo/dawarich:latest
container_name: dawarich_app
volumes:
- gem_cache:/usr/local/bundle/gems
networks:
- development
ports:
- 3000:3000
stdin_open: true
tty: true
entrypoint: dev-entrypoint.sh
2022-04-07 12:45:38 -04:00
command: ['bin/dev']
environment:
RAILS_ENV: development
REDIS_URL: redis://dawarich_redis:6379/0
DATABASE_HOST: dawarich_db
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: password
DATABASE_NAME: dawarich_development
depends_on:
- dawarich_db
- dawarich_redis
volumes:
db_data:
gem_cache:
shared_data: