blob: f028ea955b7d0b5ff811fe0b5290534b4c395751 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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"
|