mirror of
https://github.com/Steffo99/distributed-arcade.git
synced 2024-11-21 15:44:26 +00:00
Update docker-compose.yml
This commit is contained in:
parent
ece8a70c22
commit
2345bb6699
1 changed files with 6 additions and 1 deletions
|
@ -1,8 +1,13 @@
|
||||||
# Example Docker Compose file setup to run the Distributed Arcade stack with a single node
|
# Example Docker Compose file setup to run the Distributed Arcade stack with a single node
|
||||||
# Not really distributed, is it?
|
# Not really distributed, is it?
|
||||||
|
# To be used with Portainer
|
||||||
|
|
||||||
version: "3.9"
|
version: "3.9"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
redis_data:
|
||||||
|
driver: local
|
||||||
|
|
||||||
services:
|
services:
|
||||||
redis:
|
redis:
|
||||||
image: "redis:7.0.5"
|
image: "redis:7.0.5"
|
||||||
|
@ -11,7 +16,7 @@ services:
|
||||||
--save 60 1
|
--save 60 1
|
||||||
--loglevel notice
|
--loglevel notice
|
||||||
volumes:
|
volumes:
|
||||||
- "./data/redis:/data"
|
- "redis_data/redis:/data"
|
||||||
distributedarcade:
|
distributedarcade:
|
||||||
image: "ghcr.io/steffo99/distributed-arcade:latest"
|
image: "ghcr.io/steffo99/distributed-arcade:latest"
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue