21 lines
361 B
YAML
21 lines
361 B
YAML
services:
|
|
sasageyo-back:
|
|
build: .
|
|
container_name: sasageyo-back
|
|
networks:
|
|
- sasageyo-tie
|
|
nginx:
|
|
image: nginx:1.25.2-alpine-slim
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- ./html:/var/www/html:ro
|
|
hports:
|
|
- 8080:8080
|
|
networks:
|
|
- sasageyo-tie
|
|
|
|
networks:
|
|
sasageyo-tie:
|
|
name: sasageyo-tie
|
|
|