You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
hanami:
service: websubcommands:
server:
service: web
If i run server through dip: DIP_DEBUG=1 dip hanami server
"docker-compose --file docker-compose.yml --project-name auto run -e HANAMI_ENV=development --rm web"
b1596b2a4c43 auto "bash -c 'bundle exec" 2 days ago Up 2 seconds 3000/tcp auto_web_run_1
Port mapping not work.
For simple applications which don't use dns we should allow run app server with port mapping.
compose command should be with --service-ports
docker-compose --file docker-compose.yml --project-name auto run -e HANAMI_ENV=development --service-ports --rm web
4c90c609da55 auto "bash -c 'bundle exec" 2 days ago Up 4 seconds 0.0.0.0:3000->3000/tcp auto_web_run_1
maybe we should use special option in dip.yml ports: true?
For example, I have compose file:
and dip.yml
If i run server through dip:
DIP_DEBUG=1 dip hanami server
Port mapping not work.
For simple applications which don't use dns we should allow run app server with port mapping.
compose command should be with
--service-ports
maybe we should use special option in dip.yml
ports: true
?What do u think?
The text was updated successfully, but these errors were encountered: