Files
ocean/docker/docker-file/docker-compose.yaml
konjacpotato 6922705554
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s
c2
2025-05-22 20:21:54 +08:00

18 lines
347 B
YAML

services:
file:
image: localhost/file:v1
container_name: file
restart: always
volumes:
- ./etc:/app/etc
networks:
- godemo_network
# 端口映射,生产环境非必须,开发环境用于方便调试
ports:
- "60200:60200"
networks:
godemo_network:
name: godemo_network
external: true