You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
527 B
13 lines
527 B
version: '3.8'
|
|
services:
|
|
gpt3discord:
|
|
image: ghcr.io/kav-k/gpt3discord:main-full
|
|
container_name: gpt3discord
|
|
volumes:
|
|
#replace left side with the path to your .env if different, this uses the env in the folder the docker-compose.yml is in
|
|
- ./.env:/opt/gpt3discord/etc/environment
|
|
# Replace the left side with a path on your hard drive where you want to store the data for both of these
|
|
- /containers/gpt3discord:/data
|
|
- /containers/gpt3discord/share:/data/share
|
|
restart: always
|