├── .dockerignore ├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── fake-swap.sh └── config ├── init.ora ├── initXETemp.ora ├── start.sh └── xe.rsp /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | build-wrapper.sh 4 | 5 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 2 | - madhead 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | rpm 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/README.md -------------------------------------------------------------------------------- /assets/fake-swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/assets/fake-swap.sh -------------------------------------------------------------------------------- /config/init.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/config/init.ora -------------------------------------------------------------------------------- /config/initXETemp.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/config/initXETemp.ora -------------------------------------------------------------------------------- /config/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/config/start.sh -------------------------------------------------------------------------------- /config/xe.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madhead/docker-oracle-xe/HEAD/config/xe.rsp --------------------------------------------------------------------------------