9 lines
No EOL
240 B
Bash
9 lines
No EOL
240 B
Bash
# First, stop and remove existing container if it exists
|
|
docker stop cinny
|
|
docker rm cinny
|
|
|
|
# Run new container with updated config
|
|
docker run -d --name cinny \
|
|
-p 3004:80 \
|
|
-v ~/cinny/config.json:/app/config.json \
|
|
ajbura/cinny:latest |