Skip to content

Commit ffa397c

Browse files
committed
Fix stop signals not being propagated to python process in Docker container
1 parent 6320a0f commit ffa397c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,4 @@ COPY ./pcbot /app/pcbot
3838

3939
WORKDIR /app
4040

41-
ENTRYPOINT /docker-entrypoint.sh $0 $@
42-
CMD [ "python3", "-m", "pcbot.__main__", "--config", "env/config.py", "--localconfig", "env/localconfig.py"]
41+
ENTRYPOINT ["/docker-entrypoint.sh", "python3", "-m", "pcbot.__main__", "--config", "env/config.py", "--localconfig", "env/localconfig.py"]

docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ services:
77
build:
88
context: .
99
dockerfile: Dockerfile
10+
stop_signal: SIGINT
1011
volumes:
1112
# Mount environment and config files directory
1213
# to the service as a volume

0 commit comments

Comments
 (0)