Skip to content

Instantly share code, notes, and snippets.

@0xBigBoss
Created March 2, 2025 23:35
Show Gist options
  • Save 0xBigBoss/f852b6d9e91631d8b975a846992b4cd7 to your computer and use it in GitHub Desktop.
Save 0xBigBoss/f852b6d9e91631d8b975a846992b4cd7 to your computer and use it in GitHub Desktop.
Docker compose for running a Shovel instance.
services:
shovel:
image: docker.io/indexsupply/shovel:af07
container_name: shovel
restart: unless-stopped
ports:
- "8383:80"
env_file:
- .env
volumes:
- ./etc:/etc/shovel
entrypoint: /usr/local/bin/shovel
command:
- -l
- :80
- -skip-migrate
- -config
- /etc/shovel/config.json
extra_hosts:
- "host.docker.internal:host-gateway"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment