Created
March 2, 2025 23:35
-
-
Save 0xBigBoss/f852b6d9e91631d8b975a846992b4cd7 to your computer and use it in GitHub Desktop.
Docker compose for running a Shovel instance.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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