mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 00:03:09 +02:00
fix(docker): quote booleans in docker-compose.yml
This commit is contained in:
parent
c6f810b70e
commit
6bbedee9f6
@ -7,14 +7,14 @@ services:
|
|||||||
hostname: mysql
|
hostname: mysql
|
||||||
networks:
|
networks:
|
||||||
- discord-tickets
|
- discord-tickets
|
||||||
volumes:
|
volumes:
|
||||||
- tickets-mysql:/var/lib/mysql
|
- tickets-mysql:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
MYSQL_DATABASE: tickets
|
MYSQL_DATABASE: tickets
|
||||||
MYSQL_PASSWORD: insecure # change this to a secure password
|
MYSQL_PASSWORD: insecure # change this to a secure password
|
||||||
MYSQL_ROOT_PASSWORD: insecure # change this to a (different) secure password
|
MYSQL_ROOT_PASSWORD: insecure # change this to a (different) secure password
|
||||||
MYSQL_USER: tickets
|
MYSQL_USER: tickets
|
||||||
|
|
||||||
bot:
|
bot:
|
||||||
image: eartharoid/discord-tickets:4.0
|
image: eartharoid/discord-tickets:4.0
|
||||||
depends_on:
|
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_EXTERNAL: http://127.0.0.1:8169 # change this to your server's external IP (or domain)
|
||||||
HTTP_HOST: 0.0.0.0
|
HTTP_HOST: 0.0.0.0
|
||||||
HTTP_PORT: 8169
|
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
|
OVERRIDE_ARCHIVE: null
|
||||||
PUBLIC_BOT: false
|
PUBLIC_BOT: "false"
|
||||||
PUBLISH_COMMANDS: false
|
PUBLISH_COMMANDS: "false"
|
||||||
SUPER: 319467558166069248 # optionally add `,youruseridhere`
|
SUPER: 319467558166069248 # optionally add `,youruseridhere`
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
Reference in New Issue
Block a user