{"id":15954217,"url":"https://github.com/tan9/ibm-was7-docker","last_synced_at":"2025-06-13T19:05:34.536Z","repository":{"id":143276423,"uuid":"124848896","full_name":"tan9/ibm-was7-docker","owner":"tan9","description":"Dockerfile for IBM WebSphere Application Server 7.0","archived":false,"fork":false,"pushed_at":"2020-02-21T15:45:32.000Z","size":16,"stargazers_count":18,"open_issues_count":1,"forks_count":15,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-13T19:05:33.292Z","etag":null,"topics":["docker","docker-image","ibm","websphere","websphere-traditional"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tan9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-12T07:16:42.000Z","updated_at":"2024-08-16T07:02:55.000Z","dependencies_parsed_at":"2023-05-04T11:35:18.181Z","dependency_job_id":null,"html_url":"https://github.com/tan9/ibm-was7-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tan9/ibm-was7-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tan9%2Fibm-was7-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tan9%2Fibm-was7-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tan9%2Fibm-was7-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tan9%2Fibm-was7-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tan9","download_url":"https://codeload.github.com/tan9/ibm-was7-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tan9%2Fibm-was7-docker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259704409,"owners_count":22898858,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","ibm","websphere","websphere-traditional"],"created_at":"2024-10-07T13:16:36.440Z","updated_at":"2025-06-13T19:05:34.511Z","avatar_url":"https://github.com/tan9.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IBM WebSphere Application Server 7.0\n\nBuilding an IBM WebSphere Application Server 7.0 for Developers image.\n\nIBM's official [Docker build](https://github.com/WASdev/ci.docker.websphere-traditional) only supports WebSphere Application Server 8.5.5+. However, sometimes you can't really get rid off something for a while.\n\n## Prerequisites\n\nYou have to download WebSphere Application Server v7.0 installation package and updates from IBM as following.\n\n### Download installation files into `source` folder\n\n1. Download `was.7000.wasdev.nocharge.linux.amd64.tar.gz` form [IBM WebSphere Application for Developers](https://www-01.ibm.com/marketing/iwm/iwm/web/dispatcher.do?source=swg-wsasfd) page (link from this [StackOverflow answer](https://stackoverflow.com/a/17523649/3440376)), and place into `source` folder.\n\n2. Download IBM Update Installer for WebSphere Software for Linux form [IBM web site](http://www-01.ibm.com/support/docview.wss?rs=180\u0026uid=swg24020212) (IBMid required), or direct download from [IBM's FTP](ftp://public.dhe.ibm.com/software/websphere/appserv/support/tools/UpdateInstaller/7.0.x/LinuxAMD64/). Place the download file `7.0.0.*-WS-UPDI-LinuxAMD64.tar.gz` into `source` folder.\n\n### Download updates into `udpate` folder\n\nChoose desired fix pick version and download from [IBM web site](http://www-01.ibm.com/support/docview.wss?rs=180\u0026uid=swg27014463) (IBMid required), or link to [IBM's FTP](ftp://public.dhe.ibm.com/software/websphere/appserv/support/fixpacks/was70/cumulative/) navigate to `cf700*/LinuxX64/` and download WAS and WASSDK fix pack.\n\nTake Fix Pack 21 for example, the direct download location is:\n\n- \u003cftp://public.dhe.ibm.com/software/websphere/appserv/support/fixpacks/was70/cumulative/cf70021/LinuxX64/7.0.0-WS-WAS-LinuxX64-FP0000021.pak\u003e\n- \u003cftp://public.dhe.ibm.com/software/websphere/appserv/support/fixpacks/was70/cumulative/cf70021/LinuxX64/7.0.0-WS-WASSDK-LinuxX64-FP0000021.pak\u003e\n\n### Resulting directory structure\n\nIf you choose to build image for Fix Pack 21, make sure your diretory structure looks like:\n\n```text\n├── source\n│   ├── 7.0.0.21-WS-UPDI-LinuxAMD64.tar.gz\n│   └── was.7000.wasdev.nocharge.linux.amd64.tar.gz\n└── update\n    ├── 7.0.0-WS-WAS-LinuxX64-FP0000021.pak\n    └── 7.0.0-WS-WASSDK-LinuxX64-FP0000021.pak\n```\n\n## Build image\n\nAfter manually download all required files and updates, run following command to build image:\n\n```bash\ndocker image build -t websphere:7 .\n```\n\nA WebSphere 7.0 installation with `AppSrv01` profile will then be created and exposing 9060 port for admin console, and 9090 port for web application server HTTP access.\n\n## Run container\n\nRun following command to start container:\n\n```bash\ndocker container run -p 8880:8880 -p 9060:9060 -p 9080:9080 --name was7 websphere:7\n```\n\nNavigate to \u003chttp://localhost:9060/ibm/console/\u003e for the admin console, enter any username and you can then confugre your application server or install applications.\n\n### Accessing WebSphere CLIs\n\nIf you need do some configuration using `wsadmin` or some other WebSphere's CLIs, execute following command while container is running:\n\n```bash\ndocker container exec -it -e COLUMNS=$COLUMNS -e LINES=$LINES -e TERM=$TERM was7 bash\n```\n\nOr run as `root` user:\n\n```bash\ndocker container exec -it -u 0 -e COLUMNS=$COLUMNS -e LINES=$LINES -e TERM=$TERM was7 bash\n```\n\nIn the container's shell interpretor, you can access WebSphere Application Server's admin scripts from any directoy, like:\n\n```bash\nwsadmin.sh -lang jython -javaoption \"-Dfile.encoding=UTF-8\" -f my_admin_script.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftan9%2Fibm-was7-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftan9%2Fibm-was7-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftan9%2Fibm-was7-docker/lists"}