Custom start script run only when the `FLOWAPP_CONTEXT` is `Production`.
## Flow Framework support
When you start your container, the following commands are run automatically:
...
...
@@ -43,7 +45,9 @@ This feature use the "Custom start scripts" and the file is located at `/docker-
## Security
Introducing `fixuid`, before version 1.0 everything in the container run as root. Now we
define a default user `docker` (UID: 1000, GID: 1000). You can change the UID/GID to match your local user. Check the [documentation](https://github.com/boxboat/fixuid/) for the required arguments. To enable `fixuid` you must set the env variable `FLOWAPP_CONTEXT` to `Development`.
define a default user `docker` (UID: 1000, GID: 1000). You can change the UID/GID to match your local user. Check the [documentation](https://github.com/boxboat/fixuid/) for the required arguments.
To enable `fixuid` you must set the env variable `FLOWAPP_CONTEXT` to `Development`.
**Warning**: You MUST never use `fixuid` in production.