mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-04 05:43:20 +01:00
13 lines
200 B
YAML
13 lines
200 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
webapp:
|
||
|
build:
|
||
|
context: docker/example
|
||
|
dockerfile: Dockerfile
|
||
|
image: localhost/subdir_test:me
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
volumes:
|
||
|
- "/data"
|
||
|
|