Adds a Dockerfile along with accompanying scripts and definitions for building a fat Docker image. This image, when run as a container, will include the server, client, RTS, and necessary vendor services running all within.
19 lines
417 B
YAML
19 lines
417 B
YAML
version: "3"
|
|
services:
|
|
appsmith:
|
|
build:
|
|
context: ../../
|
|
container_name: appsmith_fat
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "9001:9001"
|
|
volumes:
|
|
- ./stacks:/appsmith-stacks
|
|
auto_update:
|
|
image: containrrr/watchtower
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
# Update check interval in seconds.
|
|
command: --interval 300 --label-enable --cleanup
|