mirror of
https://github.com/logos-storage/logos-storage-frontend.git
synced 2026-01-02 13:23:09 +00:00
19 lines
366 B
YAML
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 |