platform/docs/deployment/docker/docker-compose-rethinkdb.yml

20 lines
274 B
YAML
Raw Normal View History

2024-06-29 09:57:28 +00:00
services:
rethinkdb:
image: rethinkdb:latest
restart: "no"
ports:
- "8080:8080"
- "28015:28015"
- "29015:29015"
volumes:
- "rethinkdb:/data"
networks:
2024-07-14 23:35:19 +00:00
- appnet
2024-06-29 09:57:28 +00:00
volumes:
rethinkdb:
driver: local
networks:
2024-07-14 23:35:19 +00:00
appnet: