24 lines
562 B
YAML
24 lines
562 B
YAML
version: "3"
|
|
|
|
services:
|
|
appsmith:
|
|
image: index.docker.io/appsmith/appsmith-ce
|
|
container_name: appsmith
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "9001:9001"
|
|
volumes:
|
|
- ./stacks:/appsmith-stacks
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: "true"
|
|
restart: unless-stopped
|
|
|
|
auto_update:
|
|
image: containrrr/watchtower:latest-dev
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
# Update check every hour.
|
|
command: --schedule "0 0 * ? * *" --label-enable --cleanup
|
|
restart: unless-stopped
|