Skip to content

joao-fidalgo/liferay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockerized Liferay Portal

This is the repository for docker joaofidalgo/liferay automated builds

Usage

docker run -it -p 8080:8080 joaofidalgo/liferay:6.2-ce-ga6

Extending this image

If you want to deploy your applications your config files, this image offers an extension point at the cfg folder.

  1. Create your Dockerfile using joaofidalgo/liferay as the base image
  2. Add your WAR files under the folder "deploy"
  3. Add your global libraries under the folder "lib"
  4. Add your scripts under the folder "bin"
  5. Build and run your image using docker

Development Environment

docker-compose up

Using vagrant

vagrant up (requires vagrant-docker-compose plugin)

FAQ

I'm behind a corporate proxy

  1. Install vagrant-proxyconf plugin
  2. Change the Vagrantfile accordingly
  Vagrant.configure("2") do |config|
    if Vagrant.has_plugin?("vagrant-proxyconf")
      config.proxy.http     = "http://proxy.example.com:8080"
      config.proxy.https    = "http://proxy.example.com:8080"
      config.proxy.no_proxy = "localhost,127.0.0.1,.example.com"
    end
    # ...
  end

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published