Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Has been cancelled
23 lines
325 B
YAML
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 |