Skip to content

Commit

Permalink
fix: always pull latest in docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbeng committed Aug 31, 2024
1 parent f73d476 commit f0fa8a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker Compose is used for spinning up the local-da docker container along with the GM container.

version: "3"
version: "3.8"
services:
artroll:
container_name: artroll
Expand All @@ -13,6 +13,9 @@ services:
# Used for targetting localhost as if you were outside the container
network_mode: host

# Always pull the latest image
pull_policy: always

# The command config is used for launching the GM rollup once the Docker container is running
command: rollkit start --rollkit.aggregator --rollkit.da_address http://localhost:7980
depends_on:
Expand Down

0 comments on commit f0fa8a9

Please sign in to comment.