wrbapp/docker-compose.yml

20 lines
360 B
YAML
Raw Normal View History

2024-10-06 18:52:08 +02:00
services:
surrealdb:
image: surrealdb/surrealdb:latest
container_name: surrealdb-wrbapp
ports:
- 8000:8000
volumes:
- ./database:/data
user: "${UID}:${GID}"
entrypoint:
- /surreal
- start
- --user
- "root"
- --pass
- "root"
2024-10-09 13:11:45 +02:00
- --log
- debug
2024-10-06 18:52:08 +02:00
- rocksdb:/data/database.db