init/docker-compose.yaml
Martin 7beb4ca57f
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Has been cancelled
更新 apt docker
2025-09-07 14:27:11 +08:00

23 lines
325 B
YAML

x-app-config: &app-config
command: bash
working_dir: /app
volumes:
- ./:/app
services:
alpine:
<<: *app-config
image: alpine:latest
debian:
<<: *app-config
image: debian:latest
ubuntu:
<<: *app-config
image: ubuntu:latest
ubuntu-2204:
<<: *app-config
image: ubuntu:22.04