span8
span4
span8
span4
By default, we start with one engine, but with Docker compose it is easy to scale. The “2” in the below command can go as high as you like as long as your license supports a number of engines you select.
docker-compose up --scale fmeserverengine=4
docker-compose down -v
docker-compose pull
docker-compose up -d
More details on how to backup & restore FME Server can be found here.
Not every build will be made public, but the ones that are will be tagged with their build number. More details about versioning can be found here.
The different FME Server components are separated into named services. It is useful to know what the names of the services are for the different Docker Compose commands.
The commands below can pass in a parameter <service>. This should be one of the 4 services listed above. In some cases, passing in no service will perform the action on all the services. For example docker-compose stop fmeservercore will stop only the core, and docker-compose stop will stop all services. All these commands should be run in the same directory as the docker-compose.yml file or reference the docker compose file you want to use:
docker-compose -f /Users/YourName/Docker/docker-compose-2018.yaml up -d
docker-compose up -d
docker-compose start <service> docker-compose stop <service> docker-compose restart <service>
docker-compose kill <service>
docker-compose logs <service>
docker-compose up --scale fmeserverengine= <num_of_engines>
docker-compose rm <service>
docker-compose ps
docker-compose down
restart: alwaysThis means after you do the
docker-compose up -dyou can shut down and boot your system and the containers will stop and start for you automatically.
docker-compose downbefore shutting down? This could be a reason that they aren't booting on startup.
© 2019 Safe Software Inc | Legal