This commit is contained in:
Elijah McMorris 2023-12-12 10:45:10 +00:00
commit 47e4dd6b8d
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
15 changed files with 649 additions and 0 deletions

22
docker-compose.yml Normal file
View file

@ -0,0 +1,22 @@
version: "3"
services:
surrealdb:
container_name: surrealdb
env_file:
- .env
entrypoint:
- /surreal
- start
- --user
- $DB_USER
- --pass
- $DB_PASSWORD
- file:/data/surrealdb
image: surrealdb/surrealdb:latest
ports:
- 8000:8000
volumes:
- ./data:/data
volumes:
data: