mirror of
https://github.com/cooperspencer/gickup
synced 2024-11-08 12:09:18 +01:00
af10e4690d
Fix for the Dockerfile using CMD. ENTRYPOINT is nicer. Signed-off-by: Phil <phil@ucode.space>
9 lines
417 B
YAML
9 lines
417 B
YAML
version: "3"
|
|
services:
|
|
runner:
|
|
# build: . # If you want to Build the Image locally (You need the complete Repo on your PC)
|
|
image: buddyspencer/gickup:latest
|
|
volumes:
|
|
- ${PWD}/conf.yml:/gickup/conf.yml # Change the path of your local config ${PWD} is your current directory (where the docker-compose.yml is located)
|
|
command: ["/gickup/conf.yml"] # Changes the path of the internal bound config
|