Skip to content

Commit

Permalink
chore: update dev-full restart policy to unless-stopped (#1500)
Browse files Browse the repository at this point in the history
<!-- Please make sure there is an issue that this PR is correlated to. -->

## Changes

<!-- If there are frontend changes, please include screenshots. -->
  • Loading branch information
NathanFlurry committed Dec 1, 2024
1 parent eee4dea commit 94ff2d8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/dev-full/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
build:
context: ../..
dockerfile: docker/dev-full/server.Dockerfile
restart: unless-stopped
command: /usr/bin/rivet-server start
environment:
- RUST_BACKTRACE=1
Expand Down Expand Up @@ -44,6 +45,7 @@ services:
build:
context: ../..
dockerfile: docker/dev-full/server.Dockerfile
restart: unless-stopped
command: sleep infinity
environment:
- RUST_BACKTRACE=1
Expand All @@ -59,6 +61,7 @@ services:
dockerfile: docker/dev-full/client.Dockerfile
# TODO(RVT-4168): Copmile libfdb from scratch for ARM
platform: linux/amd64
restart: unless-stopped
command: -c /etc/rivet-client/config.yaml
environment:
- RUST_BACKTRACE=1
Expand All @@ -84,6 +87,7 @@ services:
- rivet-network

cockroachdb:
restart: unless-stopped
image: cockroachdb/cockroach:v24.2.3
command: start-single-node --insecure
volumes:
Expand All @@ -97,6 +101,7 @@ services:
retries: 10

redis:
restart: unless-stopped
image: bitnami/valkey:8.0.1
# TODO: Remove root user
user: root
Expand All @@ -112,6 +117,7 @@ services:
retries: 10

clickhouse:
restart: unless-stopped
image: clickhouse/clickhouse-server:23.10.1
volumes:
- clickhouse-data:/var/lib/clickhouse
Expand All @@ -126,6 +132,7 @@ services:
retries: 10

nats:
restart: unless-stopped
image: nats:2.10.22-scratch
networks:
- rivet-network
Expand All @@ -136,6 +143,7 @@ services:
retries: 10

seaweedfs:
restart: unless-stopped
image: chrislusf/seaweedfs:3.79
# TODO: Remove root user
user: root
Expand All @@ -159,6 +167,7 @@ services:
timeout: 10s

foundationdb:
restart: unless-stopped
# See docs-internal/infrastructure/fdb/AVX.md
image: foundationdb/foundationdb:7.1.60
platform: linux/amd64
Expand All @@ -175,6 +184,7 @@ services:
- rivet-network

vector-client:
restart: unless-stopped
image: timberio/vector:0.42.0-distroless-static
command: -C /etc/vector
volumes:
Expand All @@ -185,6 +195,7 @@ services:
- rivet-network

vector-server:
restart: unless-stopped
image: timberio/vector:0.42.0-distroless-static
command: -C /etc/vector
volumes:
Expand Down

0 comments on commit 94ff2d8

Please sign in to comment.