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
Will require forwarding a different port for FileMaker to access, or forwarding it through proxy
Check if nginx-proxy has the ability to listen on different ports (5003)
Will probably not be ideal for real scenarios, but potentially could help single-machine developers
Current thinking:
services:
fms${FMS_ENV:+-}${FMS_ENV} # fms OR fms-$FMS_ENV# alternative: fms-${FMS_ENV:-prod} # cleaner yml but not as nice of a container name
This would lead to an easy quick switch by simply changing the .env file, without compose replacing the container
Alternative
services:
fms:
extends:
file: compose.base.ymlservice: fmsprofiles:
- prodenvironment:
VIRTUAL_HOST: ${DOMAIN}# Is there a way to ensure host1.domain:5003 reaches here in nginx-proxy?fms-dev:
...fms-staging:
...
Would be messy and require many more environment variables, but may allow for easier control without changing env files
The text was updated successfully, but these errors were encountered:
Will probably not be ideal for real scenarios, but potentially could help single-machine developers
Current thinking:
This would lead to an easy quick switch by simply changing the
.env
file, without compose replacing the containerAlternative
Would be messy and require many more environment variables, but may allow for easier control without changing env files
The text was updated successfully, but these errors were encountered: