fix(docker): quote booleans in docker-compose.yml

This commit is contained in:
Isaac 2023-05-31 13:33:55 +01:00
parent c6f810b70e
commit 6bbedee9f6
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33

View File

@ -7,14 +7,14 @@ services:
hostname: mysql
networks:
- discord-tickets
volumes:
volumes:
- tickets-mysql:/var/lib/mysql
environment:
MYSQL_DATABASE: tickets
MYSQL_PASSWORD: insecure # change this to a secure password
MYSQL_ROOT_PASSWORD: insecure # change this to a (different) secure password
MYSQL_USER: tickets
bot:
image: eartharoid/discord-tickets:4.0
depends_on:
@ -40,10 +40,10 @@ services:
HTTP_EXTERNAL: http://127.0.0.1:8169 # change this to your server's external IP (or domain)
HTTP_HOST: 0.0.0.0
HTTP_PORT: 8169
HTTP_TRUST_PROXY: false # set to true if you're using a reverse proxy
HTTP_TRUST_PROXY: "false" # set to true if you're using a reverse proxy
OVERRIDE_ARCHIVE: null
PUBLIC_BOT: false
PUBLISH_COMMANDS: false
PUBLIC_BOT: "false"
PUBLISH_COMMANDS: "false"
SUPER: 319467558166069248 # optionally add `,youruseridhere`
networks: