-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
26 lines (22 loc) · 778 Bytes
/
compose.yml
File metadata and controls
26 lines (22 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
services:
ubuntu-debugger:
build: ./ubuntu-debugger # Folder containing the Dockerfile, also known as the build context
image: workshop/ubuntu-debugger # The name of the image to be built, in the format <repository>/<image-name>:<tag>
static-web-app:
build:
context: ./static-web-app
dockerfile: Dockerfile # Replace with Dockerfile-smaller if you want to use the smaller image
image: workshop/static-web-app
ports:
- "127.0.0.1:8080:80"
micro-go-app:
build: ./micro-go-app
image: workshop/micro-go-app
dotnet-app:
build: ./dotnet-hello-world
image: workshop/dotnet-hello-world
environment:
- DOTNET_ENVIRONMENT=Production
java-app:
build: ./java-hello-world
image: workshop/java-hello-world