mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
19 lines
471 B
YAML
19 lines
471 B
YAML
version: "3.9"
|
|
services:
|
|
guix_ubuntu:
|
|
build:
|
|
context: '../../..'
|
|
additional_contexts:
|
|
- docker_root=.
|
|
dockerfile: './contrib/containers/guix/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"
|