Could you provide an example of docker.compose to use this image correctly. #165
Replies: 1 comment
-
In my case, I use this: services:
# Oracle service (label used to access the service container)
my-oracle-db:
# Docker Hub image (feel free to change the tag "latest" to any other available one)
image: gvenzl/oracle-xe:21.3.0-slim
restart: unless-stopped
volumes:
# - oracle-data:/opt/oracle/oradata
# Provide passwords and other environment variables to container
environment:
ORACLE_RANDOM_PASSWORD: true
# APP_USER: oracle-user
# APP_USER_PASSWORD: 123456
ports:
- 1521:1521 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thks.
Beta Was this translation helpful? Give feedback.
All reactions