mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
17 lines
320 B
YAML
17 lines
320 B
YAML
services:
|
|
nocodb:
|
|
image: ${NOCODB_IMAGE:-nocodb/nocodb:latest}
|
|
restart: ${NOCODB_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/nocodb:/usr/app/data
|
|
ports:
|
|
- "${NOCODB_PORT:-8080}:8080"
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|