mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-15 22:57:33 +02:00
15 lines
236 B
YAML
15 lines
236 B
YAML
version: '3'
|
|
services:
|
|
web:
|
|
build: .
|
|
volumes:
|
|
- .:/app
|
|
- rubygems:/usr/local/bundle
|
|
ports:
|
|
- '4001:4001'
|
|
- '35729:35729'
|
|
command: 'env PORT=4001 HOST=0.0.0.0 yarn run dev'
|
|
|
|
volumes:
|
|
rubygems:
|