Update readme.md

This commit is contained in:
skidoodle 2024-10-10 17:09:05 +02:00 committed by GitHub
parent 3498545d5c
commit 237ea8fe9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,6 @@ To deploy the project using Docker Compose:
1. Create the following `docker-compose.yml` file: 1. Create the following `docker-compose.yml` file:
```yaml ```yaml
version: "3"
services: services:
trackncore: trackncore:
image: ghcr.io/skidoodle/trackncore:main image: ghcr.io/skidoodle/trackncore:main
@ -49,11 +48,9 @@ To deploy the project using Docker Compose:
restart: unless-stopped restart: unless-stopped
ports: ports:
- "3000:3000" - "3000:3000"
env_file:
- .env
volumes: volumes:
- data:/app - data:/app/data
volumes: volumes:
data: data:
``` ```