Skip to content

Latest commit

 

History

History
 
 

tuxedo_full

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Tuxedo + SALT + TSAM Plus agent on Docker

How to run

#Before running buildDockerImage.sh, you need to set the environment variables, http_proxy, https_proxy, ftp_proxy, and no_proxy, to access internet if the docker environment is behind a corporate proxy.

The base image oracle/tuxedo:12.2.2 should be built before you run buildDockerImage.sh.

You can then start the image in a new container with:
$ docker run -d -v ${LOCAL_DIR}:/u01/oracle/user_projects oracle/tuxedoall Note: ${LOCAL_DIR} is a local dir which used in docker image as external storage, it can be any dir in host machine, permission of this dir should be set like this: $ docker run -ti --rm --entrypoint="/bin/bash" oracle/tuxedoall -c "whoami && id" tuxedoall oracle uid=1000(oracle) gid=1000(oracle) groups=1000(oracle) $ sudo chown -R 1000 ${LOCAL_DIR}