-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
31 lines (27 loc) · 790 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
##### images
# java 18 or 17 should work.
JAVA_VERSION=amazoncorretto:22
MYSQL_VERSION=mysql:8.0.31
#####
##### naming
# These are the names of the docker container/images
COMPOSE_NAME=ambrosia.casino
IMAGE_NAME=java
DATABASE_IMAGE=mysql
#####
##### database
# the paths inside the container to the files
MYSQL_ROOT_PASSWORD_FILE=/secrets/password.txt
MYSQL_USER_FILE=/secrets/username.txt
MYSQL_PASSWORD_FILE=/secrets/password.txt
MYSQL_DATABASE=add
##### database
##### build
# internal to the container for where to run the bot
WORKINGDIR=/usr/ambrosia/casino
JAR_FILE=AmbrosiaADD-1.0-SNAPSHOT-all.jar
# Change this to where you want to bind the volumes to.
# I prefer bind mounts to volumes
MOUNT_DIR=/docker/volumes/ambrosia/casino
SECRETS_DIR=/docker/secrets/ambrosia/casino
#####