logos-storage-frontend/docker-compose.yml

19 lines
366 B
YAML
Raw Normal View History

2023-10-24 15:29:35 -05:00
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