gogs_runner/docker-compose.yml

15 lines
373 B
YAML

version: '3.3'
services:
gogs_auto_deploy:
image: zhaoyingbo/gogs_auto_deploy:1.0.0
container_name: gogs_auto_deploy
environment:
- TZ=Asia/Shanghai # 时区
ports:
- "3001:3001"
volumes:
- ~/.ssh:/root/.ssh
- /usr/bin/docker:/usr/bin/docker
- /var/run/docker.sock:/var/run/docker.sock
user: root
restart: always