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.
20 lines
447 B
20 lines
447 B
3 years ago
|
version: '2'
|
||
|
|
||
|
services:
|
||
|
satellite:
|
||
|
build:
|
||
|
context: $PWD/
|
||
|
dockerfile: Dockerfile.satellite
|
||
|
volumes:
|
||
|
- /tmp/.X11-unix:/tmp/.X11-unix
|
||
|
- /usr/share/zoneinfo/Asia/Shanghai:/etc/localtime
|
||
|
network_mode: "host"
|
||
|
privileged: true
|
||
|
ports:
|
||
|
- "7400:7400"
|
||
|
tty: true
|
||
|
environment:
|
||
|
- DISPLAY:$DISPLAY
|
||
|
ipc: "host"
|
||
|
pid: "host"
|
||
|
command: /bin/bash -c "cd /root/Satellite/build && ./main"
|