You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
510 B
28 lines
510 B
version: "3.8" |
|
|
|
services: |
|
jumble: |
|
container_name: jumble-nginx |
|
build: |
|
context: . |
|
dockerfile: Dockerfile |
|
args: |
|
VITE_PROXY_SERVER: http://localhost:8090 |
|
ports: |
|
- "8089:80" |
|
restart: unless-stopped |
|
networks: |
|
- jumble |
|
|
|
proxy-server: |
|
image: ghcr.io/danvergara/jumble-proxy-server:latest |
|
environment: |
|
- ALLOW_ORIGIN=http://localhost:8089 |
|
- PORT=8080 |
|
ports: |
|
- "8090:8080" |
|
networks: |
|
- jumble |
|
|
|
networks: |
|
jumble:
|
|
|