mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
26 lines
416 B
YAML
26 lines
416 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
webapp:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 3000:3000
|
|
- 8080:8080
|
|
networks:
|
|
- hc-network
|
|
volumes:
|
|
- .:/HC-WebApp
|
|
- node_modules:/HC-WebApp/node_modules
|
|
command: yarn run dev
|
|
environment:
|
|
- HOST=0.0.0.0
|
|
- BACKEND_URL=http://backend.127.0.0.1.xip.io:4000
|
|
|
|
networks:
|
|
hc-network:
|
|
name: hc-network
|
|
|
|
volumes:
|
|
node_modules:
|