Added additional details about how to use the fat container, and how to manage / maintain it. Also includes some refactorings that shouldn't affect the functionality significantly.
22 lines
416 B
YAML
22 lines
416 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
appsmith:
|
|
build:
|
|
context: ../../
|
|
container_name: appsmith
|
|
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
|