1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 22:57:33 +02:00
cheatsheets/docker-compose.yml
2018-06-27 07:16:33 +08:00

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: