Skip to content
Snippets Groups Projects
Commit 0aa90371 authored by Wolfgang Welz's avatar Wolfgang Welz
Browse files

Add Docker Compose scripts

parent ea729034
No related branches found
No related tags found
No related merge requests found
......@@ -49,3 +49,8 @@ and then run it with
docker run --rm -it -v target/mainnetdb:/root/mainnetdb iotaledger/goshimmer
```
You may replace `target/mainnetdb` with a custom path to the database folder.
To start Shimmer in the background, you can also simply use [Docker Compose](https://docs.docker.com/compose/) by running
```
docker-compose up -d
```
version: "3"
services:
goshimmer:
image: iotaledger/goshimmer
container_name: iota_goshimmer
restart: unless-stopped
volumes:
- ./mainnetdb:/root/mainnetdb:rw
ports:
- "14666:14666/tcp"
- "14626:14626/udp"
- "14626:14262/tcp"
command: "-node-disable-plugins statusscreen"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment