Spaces:
Build error
Build error
Demosthene-OR
commited on
Commit
•
a149b00
1
Parent(s):
d7b3abb
....
Browse files- Dockerfile +6 -0
- Dockerfile_2.txt → Dockerfile_2 +0 -0
Dockerfile
CHANGED
@@ -1,6 +1,12 @@
|
|
1 |
# Use the official MySQL image as a base image
|
2 |
FROM mysql:latest
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# Définir le mot de passe root pour MySQL
|
5 |
ENV MYSQL_ROOT_PASSWORD=Rakuten
|
6 |
|
|
|
1 |
# Use the official MySQL image as a base image
|
2 |
FROM mysql:latest
|
3 |
|
4 |
+
# Exécute une commande pour obtenir l'adresse IP du conteneur
|
5 |
+
RUN ip addr show eth0 | grep 'inet ' | awk '{print $2}' | cut -f1 -d'/' > /tmp/container_ip.txt
|
6 |
+
|
7 |
+
# Lire le contenu du fichier contenant l'adresse IP
|
8 |
+
RUN cat /tmp/container_ip.txt
|
9 |
+
|
10 |
# Définir le mot de passe root pour MySQL
|
11 |
ENV MYSQL_ROOT_PASSWORD=Rakuten
|
12 |
|
Dockerfile_2.txt → Dockerfile_2
RENAMED
File without changes
|