Este commit está contenido en:
Your Name
2020-05-28 10:36:00 +00:00
padre a8ccaaf631
commit e103445d65
Se han modificado 3 ficheros con 35 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,27 @@
version: '2'
services:
radicle:
build: ./radicle
restart: always
container_name: radicle
hostname: radicle
entrypoint:
- /bin/bash
- /radicle/entrypoint.sh
volumes:
- ./radicle:/radicle
- ./radicle/my-keys.rad:/root/.config/radicle/my-keys.rad:ro
ports:
- 4002:4001
networks:
mynet:
ipv4_address: 172.119.0.101
networks:
mynet:
driver: bridge
ipam:
config:
- subnet: 172.119.0.0/24

Ver fichero

@@ -0,0 +1,4 @@
FROM debian:sid-slim
RUN apt update && apt -y upgrade && apt -y install wget && apt clean
RUN wget -q https://storage.googleapis.com/static.radicle.xyz/releases/radicle_latest_amd64.deb
RUN apt -y install ./radicle_latest_amd64.deb

Ver fichero

@@ -0,0 +1,4 @@
#!/bin/bash
PATH=$PATH:/usr/lib/radicle/bin/
rad daemon-ipfs &
rad daemon-radicle