Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ViacheslavP committed Dec 12, 2024
1 parent 5b12243 commit a724955
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion oracle/create_flag.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

touch /opt/oracle/flag
touch /opt/oracle/flag
2 changes: 1 addition & 1 deletion oracle/create_user.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CREATE USER test IDENTIFIED BY test;
GRANT ALL PRIVILEGES TO test;
GRANT SELECT ON V_$DATABASE TO test;
GRANT SELECT ON V_$DATABASE TO test;
2 changes: 1 addition & 1 deletion oracle/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- ./oracle-sakila-insert-data.sql:/container-entrypoint-initdb.d/3.sql
- ./create_flag.sh:/container-entrypoint-initdb.d/4.sh
healthcheck:
test: ["CMD", "sh", "-c", "if [ -e /opt/oracle/flag ]; then exit 0; else exit 1; fi"]
test: ["CMD", "sh", "-c", "if [ -e /opt/oracle/flag ]; then exit 0; else exit 1; fi"]
interval: "6s"
timeout: "6s"
start_period: "6s"
Expand Down

0 comments on commit a724955

Please sign in to comment.