Skip to content

Commit

Permalink
Merge pull request #13 from rohitkumbhar/12-release-v001
Browse files Browse the repository at this point in the history
Releasing v0.0.1
  • Loading branch information
rohitkumbhar authored Jan 4, 2025
2 parents 6856437 + 87e5396 commit 35f41dd
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 9 deletions.
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,27 @@ docker compose build
# Run the docker image
docker compose up -d
```
## Docker Image
GHCR based Docker image to be released soon...
## Docker Compose
```yaml
volumes:
surmai_data:

services:
surmai_server:
container_name: surmai_server
image: ghcr.io/rohitkumbhar/surmai:v0.0.1
volumes:
- surmai_data:/pb_data
ports:
- "9090:8080"
restart: always
environment:
SURMAI_ADMIN_EMAIL: admin@example.com # Add your default administrator email
SURMAI_ADMIN_PASSWORD: ChangeMe123#@! # Admin password. Min 9 characters with all the fixings
PB_DATA_DIRECTORY: /pb_data # Must match volume directory above

```


# Credits

Expand Down
18 changes: 18 additions & 0 deletions docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
volumes:
surmai_data:

services:
surmai:
container_name: surmai_server
image: surmai:latest
build:
dockerfile: ./Dockerfile
volumes:
- surmai_data:/pb_data
ports:
- "9090:8080"
restart: always
environment:
SURMAI_ADMIN_EMAIL: admin@surmai.net
SURMAI_ADMIN_PASSWORD: ChangeMe123#@!
PB_DATA_DIRECTORY: /pb_data
13 changes: 6 additions & 7 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@ volumes:
surmai_data:

services:
surmai:
surmai_server:
container_name: surmai_server
image: surmai:latest
build:
dockerfile: ./Dockerfile
image: ghcr.io/rohitkumbhar/surmai:main
volumes:
- surmai_data:/pb_data
ports:
- "9090:8080"
restart: always
environment:
SURMAI_ADMIN_EMAIL: admin@surmai.net
SURMAI_ADMIN_PASSWORD: ChangeMe123#@!
PB_DATA_DIRECTORY: /pb_data
SURMAI_ADMIN_EMAIL: admin@example.com # Add your default administrator email
SURMAI_ADMIN_PASSWORD: ChangeMe123#@! # Admin password. Min 9 characters with all the fixings
PB_DATA_DIRECTORY: /pb_data # Must match volume directory above
# SURMAI_DEMO_MODE: true # Enable Demo mode

0 comments on commit 35f41dd

Please sign in to comment.