Sha256: 1e3a4b6c7f97c6f1e97ca6203fc653b8ea8a9144e44fff49b40667bba12c7f68
Contents?: true
Size: 1.05 KB
Versions: 14
Compression:
Stored size: 1.05 KB
Contents
version: '3' services: web: build: . depends_on: - database - redis entrypoint: ./docker-entrypoint.sh command: ["bin/rails", "s", "-b", "0.0.0.0"] ports: - "3000:3000" - "4000:4000" volumes: - .:/usr/src/app - gem_cache:/gems env_file: - .env/development/web - .env/development/database environment: - WEBPACKER_DEV_SERVER_HOST=webpack_dev_server webpack_dev_server: build: . command: ./bin/webpack-dev-server ports: - 3035:3035 volumes: - .:/usr/src/app - gem_cache:/gems env_file: - .env/development/database - .env/development/web environment: - WEBPACKER_DEV_SERVER_HOST=0.0.0.0 redis: image: redis database: image: postgres env_file: - .env/development/database volumes: - db_data:/var/lib/postgresql/data system_tests: image: selenium/standalone-chrome-debug logging: driver: none ports: - "35729:35729" - "5900:5900" volumes: db_data: gem_cache:
Version data entries
14 entries across 14 versions & 1 rubygems