20 lines
388 B
YAML
20 lines
388 B
YAML
# 需要预先配置好配置文件
|
|
|
|
version: '3.3'
|
|
services:
|
|
epicgames-freegames:
|
|
container_name: epicgames
|
|
volumes:
|
|
- './config/:/usr/app/config:rw'
|
|
# ports:
|
|
# - '3000:3000'
|
|
restart: unless-stopped
|
|
image: 'charlocharlie/epicgames-freegames:latest'
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- epicgames
|
|
|
|
networks:
|
|
nginx:
|
|
external: true |