diff options
Diffstat (limited to 'examples/docker-compse.example.yaml')
-rw-r--r-- | examples/docker-compse.example.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/docker-compse.example.yaml b/examples/docker-compse.example.yaml new file mode 100644 index 0000000..f028ea9 --- /dev/null +++ b/examples/docker-compse.example.yaml @@ -0,0 +1,13 @@ + bot: + restart: unless-stopped + build: . + volumes: + - .:/app:ro + # Thanks to POETRY_HOME being set to "/opt/poetry/home", + # any venv folders on the host file system at this path + # will not be used by poetry within the Docker environment. + tty: true + env_file: + - .env + environment: + FOO: "bar" |