forked from Develatio/nebulant-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 780 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (33 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "3.4"
name: nebulant
services:
bridge:
container_name: nebulant_bridge
build:
context: .
dockerfile: Dockerfile
image: develatio/nebulant_bridge
command: "/app/dist/nebulant-bridge -x -b 0.0.0.0:16789 -bs ultrasecret -c server.crt -k server.key"
ports:
- 16788:16789
networks:
- nebulant-private
- nebulant-lan
# cli:
# container_name: nebulant_cli
# build:
# context: .
# dockerfile: Dockerfile
# image: develatio/nebulant_cli
# command: "/app/dist/nebulant -x serve"
# ports:
# - 15678:15678
# networks:
# - nebulant
# - nebulant-external
networks:
nebulant-private:
name: nebulant-private
nebulant-lan:
name: nebulant-lan
external: true