Jocelyn Le Sage

Results 1410 comments of Jocelyn Le Sage

From what I've learned, it's not really possible to offer an universal way to "select" the font to use. This highly depends on the implemented application. The way an application...

When using the default docker network mode `Bridge`, users need to explicitly expose the port(s) they want during the creation of the container.

What's the issue exactly? You want the documentation to precise that the script must start with a valid shebang?

What are you trying to achieve exactly? You want to create multiple instances of the container to access them separately?

I'm not an expert with the swarm mode, but I think that the goal of swarm is to have multiple containers exposing all the same service to increase availability or...

As for the ubuntu baseimage, you are right: It is not expected to be 32-bit. It should be 64-bit. I will fix this.

What you are describing is the actual behavior of the image: When the `app` service terminates, the container shuts down. To have the `app` service automatically restarted, you can pass...

When `KEEP_APP_RUNNING=1 `, `startapp.sh` is re-executed when it terminates. The way your script is invoked in `startapp.sh` can make a difference. Make sure you invoke with with `exec`.

Are you using the build script? ``` ./build.sh debian-8 ```

This baseimage is not built from scratch, but depends on another one (`jlesage/baseimage`). So you need to add support for a new distro in `jlesage/baseimage` first. You could add a...