Skip to content

Commit

Permalink
Removed the extra quotes from the docker compose setup example
Browse files Browse the repository at this point in the history
  • Loading branch information
andyoknen authored Nov 7, 2023
1 parent 1bdbbc3 commit 299ccbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,18 @@ $ docker run -d \
### docker-compose (recommended)
Sample `docker-compose.yml`:
```
version: '3.7'
version: "3"
services:
pocketnet.core:
container_name: pocketnet.core
image: pocketnetteam/pocketnet.core:latest
restart: on-failure
stop_grace_period: 1m30s
stop_grace_period: 10m
# Increasing the number of available file descriptors
ulimits:
nofile:
soft: "65536"
hard: "65536"
soft: 65536
hard: 65536
# Create a Volume for the Blockchain database directory
volumes:
- ~/.pocketcoin:/home/pocketcore/.pocketcoin
Expand Down

0 comments on commit 299ccbc

Please sign in to comment.