14 lines
306 B
YAML
14 lines
306 B
YAML
services:
|
|
barabingo:
|
|
image: barabingo:latest
|
|
container_name: barabingo
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./uploads:/app/public/uploads
|
|
environment:
|
|
- NODE_ENV=production
|
|
- FREESOUND_API_KEY=${FREESOUND_API_KEY}
|