Update docker-compose.yml
This commit is contained in:
parent
a4c58124dd
commit
67251952a2
@ -3,6 +3,10 @@ services:
|
|||||||
redis:
|
redis:
|
||||||
restart: always
|
restart: always
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
|
volumes:
|
||||||
|
- "./redisdata:/data"
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
build: .
|
build: .
|
||||||
@ -19,6 +23,8 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "./actor.pem:/actor.pem"
|
- "./actor.pem:/actor.pem"
|
||||||
# - "./config.yaml:/Activity-Relay/config.yaml"
|
# - "./config.yaml:/Activity-Relay/config.yaml"
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
|
||||||
server:
|
server:
|
||||||
build: .
|
build: .
|
||||||
@ -35,3 +41,5 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "./actor.pem:/actor.pem"
|
- "./actor.pem:/actor.pem"
|
||||||
# - "./config.yaml:/Activity-Relay/config.yaml"
|
# - "./config.yaml:/Activity-Relay/config.yaml"
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
Loading…
x
Reference in New Issue
Block a user