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
335 B
13 lines
335 B
version: '3'
|
|
|
|
services:
|
|
chatgpt_bot:
|
|
container_name: chatgpt-bot
|
|
image: node:18
|
|
volumes:
|
|
- /srv/chatgpt-bot:/app
|
|
working_dir: /app
|
|
command: "yarn run init"
|
|
restart: unless-stopped
|
|
#environment: # Set the timezone of the container (Not required, only a good practice for any application)
|
|
# - TZ= |