mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
17 lines
389 B
YAML
17 lines
389 B
YAML
version: "3.9"
|
|
services:
|
|
guix_ubuntu:
|
|
build:
|
|
context: '.'
|
|
dockerfile: './Dockerfile'
|
|
args:
|
|
USER_ID: 1000 # set this to $(id -u) of the host
|
|
GROUP_ID: 1000 # set this to $(id -g) of the host
|
|
container_name: guix_ubuntu
|
|
tty: true
|
|
stdin_open: true
|
|
privileged: true
|
|
network_mode: host
|
|
volumes:
|
|
- "../../..:/src/dash:rw"
|