File size: 765 Bytes
ec0b3a7
 
 
 
 
 
 
 
 
 
 
 
 
74f41ee
 
ec0b3a7
713b0fb
ec0b3a7
 
d7b3abb
ec0b3a7
3c130d0
824507f
 
7466b23
ec0b3a7
824507f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Use the official MySQL image as a base image
FROM mysql:latest

# Définir le mot de passe root pour MySQL
ENV MYSQL_ROOT_PASSWORD=Rakuten

# Créer automatiquement une base de données au démarrage de MySQL
ENV MYSQL_DATABASE=rakuten_db

# Définir l'utilisateur root et son mot de passe
ENV MYSQL_USER=rakuten_admin@%
ENV MYSQL_PASSWORD=Rakuten

RUN chmod 777 -R /var

# Expose the MySQL port
EXPOSE 3306

# Copier le script SQL dans le conteneur
COPY --chown=user ./script.sql /docker-entrypoint-initdb.d/

# Modifier le fichier de configuration pour autoriser les connexions distantes
# RUN sed -i 's/127.0.0.1/0.0.0.0/g' /etc/mysql/my.cnf
# RUN mysqld --verbose --help

# Démarrer le serveur MySQL
CMD ["mysqld","--bind-address","0.0.0.0","--port","7860"]