fc游戏项目地址:
xymn2023/FCgame: 小霸王街机游戏源码-经典怀旧游戏-内置200多款经典怀旧游戏
环境
ubuntu 20.04
1.安装docker
2.安装docker-compose
Ubuntu 安装 docker-compose-优快云博客
3.编写shell脚本
vim start.sh
#!/bin/bash
# 创建目录结构
rm -r /docker/fcGame
mkdir -p /docker/fcGame/data
mkdir -p /docker/fcGame/html
# 进入目标目录
cd /docker/fcGame
cat <<EOF > nginx.conf
# nginx.conf 示例
events {}
http {
include mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html; # 默认的静态文件目录
index index.html index.htm; # 默认首页文件
}
}
}
EOF
# 将内容写入 docker-compose.yml 文件
cat <<EOF > docker-compose.yml
services:
fcGame:
image: nginx
container_name: fcGame
restart: unless-stopped
ports:
- "8109:80" # 映射主机的80端口到容器的80端口
environment:
- TZ=Asia/Shanghai
volumes:
- /docker/fcGame/nginx.conf:/etc/nginx/nginx.conf # 挂载你自定义的 Nginx 配置文件
- /docker/fcGame/html:/usr/share/nginx/html # 挂载静态文件目录
EOF
# 启动 Docker Compose
docker compose up -d
4.启动shell脚本
sh start.sh
5.项目部署
将从github上download 下来的项目,放到/docker/fcGame/html 目录下
6.打开网页,开始使用
http://<主机IP>:8109