Closed edoardodavini closed 10 months ago
Hi @edoardodavini
Thanks for reporting the issue. Starting with version 23.10.2.3
, the environment variables for startup are simplified.
You can start the container with environment variable WORKLOAD_TYPE=ATP
or WORKLOAD_TYPE=ADW
The passwords are called ADMIN_PASSWORD
and WALLET_PASSWORD
.
Please try the below docker-compose configuration.
version: "3"
services:
database:
container_name: retraced.oracledb-2130-atp
image: ghcr.io/oracle/adb-free:latest
environment:
- WORKLOAD_TYPE=ATP
- ADMIN_PASSWORD=my_nice_atp_pw
- WALLET_PASSWORD=my_nice_wallet_pw
ports:
- 1521:1521 # TLS
- 1522:1522 # mTLS
- 8443:8443 # HTTPS for ORDS/APEX
- 27017:27017 # Mongo API
hostname: localhost
cap_add:
- SYS_ADMIN
Oh. I didn't checked documentation. My fault. Wasn't expecting that many changes. This is amazing! Will try tomorrow morning (CET) Thanks
thank you very much. Everything's working smoothly.
I'll let you close the ticket with just one question: any idea to have the fastest boot on ATP for CI usage? (like testing our services) Thank you mate!
Sure @edoardodavini
I know, it would be ideal to have the fastest boot, database containers are meant to be lightweight. We are working towards it and I will keep you posted on this thread :)
Let me close this issue anyway :) This is not an issue at all :)
Hi everyone, I've a simple
docker compose
As you can see, I'm getting this error
Reverting to v
23.10.2.2
fixes the issueJust noticed that v
23.10.2.2
is 2.01GB and23.10.2.3
is 1.3GBPretty big difference huh?