https://github.com/slamdev/temporalite-container-image
Container image for temporalite
https://github.com/slamdev/temporalite-container-image
Last synced: 7 months ago
JSON representation
Container image for temporalite
- Host: GitHub
- URL: https://github.com/slamdev/temporalite-container-image
- Owner: slamdev
- License: apache-2.0
- Created: 2022-12-19T22:36:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T17:29:34.000Z (about 2 years ago)
- Last Synced: 2023-12-15T18:37:04.189Z (about 2 years ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# temporalite-container-image  
```bash
docker run --rm -p7233:7233 -p8233:8233 slamdev/temporalite:0.3.0
```
UPDATE: officil image can be used now. Sow the repo is archived.
```yaml
temporal:
# https://hub.docker.com/r/temporalio/server/tags
image: temporalio/server:1.21.5.0
restart: on-failure
user: "0:0" # running as root to avoid permission issues with writing to /tmp/sqlite/db
entrypoint:
- temporal
- server
- start-dev
- --namespace=default
- --db-filename=/tmp/sqlite/db
- --ip=0.0.0.0
tmpfs:
- /tmp/sqlite
ports:
- "7233:7233"
- "8233:8233"
```