Fixed permission problem

This commit is contained in:
Javier Cortejoso 2019-06-26 16:55:23 +02:00
parent 85c0f44fc4
commit e239404700
No known key found for this signature in database
GPG Key ID: FBEEF3131E39EBCF
4 changed files with 16 additions and 13 deletions

View File

@ -2,11 +2,11 @@ version: '3'
services:
keeper-node:
image: ${PARITY_IMAGE}
user: root
command:
--config /home/parity/parity/config/config.toml
--db-path /home/parity/chains
--keys-path /home/parity/.local/share/io.parity.ethereum/keys
--base-path /home/parity/base
--keys-path /keys
--ws-interface all
--jsonrpc-cors all
--jsonrpc-interface all
@ -14,8 +14,8 @@ services:
--jsonrpc-apis all
volumes:
- ../networks/duero/config:/home/parity/parity/config
- ../networks/duero/keys:/home/parity/.local/share/io.parity.ethereum/keys
- keeper-node-duero:/home/parity/.local/share/io.parity.ethereum/
- ../networks/duero/keys:/keys/duero
- keeper-node-duero:/home/parity/base
ports:
- 8545:8545
networks:

View File

@ -2,10 +2,11 @@ version: '3'
services:
keeper-node:
image: ${PARITY_IMAGE}
user: root
command:
--chain kovan
--base-path /home/parity/base
--keys-path /home/parity/.local/share/io.parity.ethereum/keys
--keys-path /keys
--light
--ws-interface all
--jsonrpc-cors all
@ -14,8 +15,8 @@ services:
--jsonrpc-apis all
--unsafe-expose
volumes:
- ../networks/kovan/keys:/home/parity/.local/share/io.parity.ethereum/keys/kovan
- keeper-node-kovan:/home/parity/.local/share/io.parity.ethereum/
- ../networks/kovan/keys:/keys
- keeper-node-kovan:/home/parity/base
ports:
- 8545:8545
networks:

View File

@ -2,10 +2,11 @@ version: '3'
services:
keeper-node:
image: ${PARITY_IMAGE}
user: root
command:
--config /home/parity/parity/config/config.toml
--db-path /home/parity/chains
--base-path /home/parity/base
--keys-path /keys
--ws-interface all
--jsonrpc-cors all
--jsonrpc-interface all
@ -13,8 +14,8 @@ services:
--jsonrpc-apis all
volumes:
- ../networks/nile/config:/home/parity/parity/config
- ../networks/nile/keys:/home/parity/.local/share/io.parity.ethereum/keys
- keeper-node-nile:/home/parity/.local/share/io.parity.ethereum/
- ../networks/nile/keys:/keys/nile
- keeper-node-nile:/home/parity/base
ports:
- 8545:8545
networks:

View File

@ -2,10 +2,11 @@ version: '3'
services:
keeper-node:
image: ${PARITY_IMAGE}
user: root
command:
--config /home/parity/parity/config/config.toml
--db-path /home/parity/chains
--base-path /home/parity/base
--keys-path /keys
--ws-interface all
--jsonrpc-cors all
--jsonrpc-interface all
@ -13,8 +14,8 @@ services:
--jsonrpc-apis all
volumes:
- ../networks/pacific/config:/home/parity/parity/config
- ../networks/pacific/keys:/home/parity/.local/share/io.parity.ethereum/keys
- keeper-node-pacific:/home/parity/.local/share/io.parity.ethereum/
- ../networks/pacific/keys:/keys/pacific
- keeper-node-pacific:/home/parity/base
ports:
- 8545:8545
networks: