Skip to content
Snippets Groups Projects
Select Git revision
  • 5673ae79cb1d05e7ad633e31e058cbdcee43aeed
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

docker-compose.yml

Blame
  • user avatar
    jonastheis authored
    Fix permission denied in container if run without mounting a `rw` volume making it possible to run as throw-away container.
    Remove `VOLUME` from Dockerfile as this only pollutes host system with anonymous volumes.
    0f99a56c
    History
    docker-compose.yml 845 B
    version: "3"
    
    services:
    
      goshimmer:
        network_mode: host
        image: iotaledger/goshimmer
        build:
          context: ./
          dockerfile: Dockerfile
        container_name: iota_goshimmer
        restart: unless-stopped
        # Mount volumes:
        # make sure to give read/write access to the folder ./mainnetdb (e.g., chmod -R 777 ./mainnetdb)
        # optionally, you can mount a config.json into the container
        volumes:
          - ./mainnetdb/:/tmp/mainnetdb/:rw
          #- ./config.json:/config.json:ro
        # Expose ports:
        # gossip:       - "14666:14666/tcp"
        # autopeering:  - "14626:14626/udp"
        # webAPI:       - "8080:8080/tcp"
        # dashboard:    - "8081:8081/tcp"
        # graph:        - "8082:8082/tcp"
        ports:
          - "14666:14666/tcp"
          - "14626:14626/udp"
          #- "8080:8080/tcp"
          #- "8081:8081/tcp"
          #- "8082:8082/tcp"