20 lines
315 B
YAML
20 lines
315 B
YAML
version: '3'
|
|
services:
|
|
websockify:
|
|
build:
|
|
context: ./websockify
|
|
command: ["${HOSTNAME}", "${PORT}"]
|
|
ports:
|
|
- 8081:8081
|
|
env_file:
|
|
- ./.env
|
|
|
|
filegateway:
|
|
build:
|
|
context: ./filegateway
|
|
command: ["${HOSTNAME}"]
|
|
ports:
|
|
- 8082:8082
|
|
env_file:
|
|
- ./.env
|