17 lines
351 B
YAML
17 lines
351 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
ch14-access-log:
|
|
image: kiamol/ch14-access-log:latest
|
|
build:
|
|
context: ./access-log
|
|
|
|
ch14-image-gallery:
|
|
image: kiamol/ch14-image-gallery:latest
|
|
build:
|
|
context: ./image-gallery
|
|
|
|
ch14-image-of-the-day:
|
|
image: kiamol/ch14-image-of-the-day:latest
|
|
build:
|
|
context: ./image-of-the-day |