我甚至不确定要问什么问题才能解决我的问题,但在这里:
我知道我错过了一些东西,而且我对这个问题的理解是有限的。我想在这里实现的就是让我的webpack-dev-server服务于我的前端和一个docker容器服务我的api,我希望这两个能够进行通信。
感谢您的帮助!
# docker command when I run my container the volume is the code for my backend so yes my webpack-dev-server runs on host
docker run --rm -d -p 3001:80 -p 3306:3306 -v $(pwd)/app/:/var/www/html/ image:version
# Start from centos-lamp stack image
FROM dockerfiles/centos-lamp
# Place the copied DB file in tmp
COPY ./db.sql /tmp
RUN service mysqld start && \
echo "CREATE DATABASE testdb" | mysql && \
mysql testdb < /tmp/db.sql && \
mysql -e "CREATE USER 'test'@'%' IDENTIFIED BY 'test';" && \
mysql -e "GRANT ALL PRIVILEGES ON *.* TO 'test'@'%';" && \
mysql -e "FLUSH PRIVILEGES;" && \
rm -rf /var/www/html/*
EXPOSE 80 3306