Files
big-agi/docker-compose.yaml
T
Sam Biggins 02cd5db630 build: add docker-compose as pre-built image option, add usage to readme
For .gitignore, change ignored env file to .env (a common use case). .env.local is automatically ignored by git and more related application.
2023-05-13 11:49:40 -07:00

10 lines
180 B
YAML

version: '3.9'
services:
big-agi:
image: ghcr.io/enricoros/big-agi:main
ports:
- 3000:3000
env_file:
- .env
command: ["next", "start", "-p", "3000" ]