We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 470e963 commit 4fea23fCopy full SHA for 4fea23f
README.md
@@ -84,15 +84,15 @@ make all
84
```bash
85
# Bash
86
# as root
87
- docker exec -it oracle_database bash
+ docker exec -it -u root oracle_database bash
88
# as oracle
89
- docker exec -it oracle_database gosu oracle bash
+ docker exec -it oracle_database bash
90
91
# Run sqlplus in the running container
92
- docker exec -it oracle_database gosu oracle sqlplus / as sysdba
+ docker exec -it oracle_database sqlplus / as sysdba
93
94
# Run rman in the running container
95
- docker exec -it oracle_database gosu oracle rman target /
+ docker exec -it oracle_database rman target /
96
97
# Run sqlplus in a separate container and
98
# connect to the database in the linked container
0 commit comments