blob: c3321f32f57182f270aba680a2c183bd35bdd51e (
plain)
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
|
# Docker compose file for easy volume mounting and running of the container
services:
coros-emu:
image: opencortex/coros-emu:latest
build:
context: ../
dockerfile: CorOS-emulation/Dockerfile
tags:
- opencortex/coros-emu:latest
volumes:
- ../filesystems:/qc-fs
- ../mount:/mnt
environment:
# Edit this to your needs. This should be just the file name, not the path.
- UPDATE_FILE=verify.bin.gz
# Port forward the VNC port
ports:
- "5900:5900"
privileged: true
entrypoint: /bin/bash -c "while true; do sleep 1; done"
|