logos-storage-frontend/docker-compose.yml
2023-11-01 20:12:20 +09:00

19 lines
366 B
YAML

services:
client:
build:
context: .
dockerfile: Dockerfile.client
image: codex-frontend-client
ports:
- "3000:80"
environment:
- CODEX=http://localhost:8080
nginx:
image: nginx:alpine
volumes:
- ./deployment/nginx.conf:/etc/nginx/nginx.conf:ro
ports:
- "8070:80"
depends_on:
- client