15 lines
288 B
YAML
15 lines
288 B
YAML
networks:
|
|
caddy_shared:
|
|
external: true
|
|
services:
|
|
signup-confirmation:
|
|
image: nginx:alpine
|
|
container_name: study-sprint-signup-confirmation
|
|
restart: always
|
|
expose:
|
|
- "80"
|
|
networks:
|
|
- caddy_shared
|
|
volumes:
|
|
- ./site:/usr/share/nginx/html:ro
|