Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hasufell/docker-gentoo-tomcat

Gentoo tomcat inside docker image
https://github.com/hasufell/docker-gentoo-tomcat

Last synced: 23 days ago
JSON representation

Gentoo tomcat inside docker image

Awesome Lists containing this project

README

        

## Running

First set up tomcat:
```sh
docker run -ti \
-v :/var/lib/tomcat-8 \
-v :/etc/tomcat-8 \
hasufell/gentoo-tomcat \
/usr/share/tomcat-8/gentoo/tomcat-instance-manager.bash --create
```

Then start tomcat:
```sh
docker run -ti -d \
-v :/var/lib/tomcat-8 \
-v :/etc/tomcat-8 \
-p 8080:8080 \
hasufell/gentoo-tomcat
```