aboutsummaryrefslogtreecommitdiff
path: root/srcs/mysql/Dockerfile
blob: 448080e215402cf5d76c50e32d08a4ba64eb8cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM alpine:latest
#init
RUN apk -U upgrade
#install nginx/php
RUN apk add vim mysql mysql-client
# RUN apk add telegraf --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted --no-cache
#Expose PORT
EXPOSE 3306
COPY my.cnf /etc/
COPY start.sh .
#COPY wordpress .
# COPY init.sql .
#telegraf
# RUN mkdir -p /etc/telegraf
# COPY telegraf.conf /etc/telegraf/telegraf.conf
CMD /bin/sh /start.sh