diff --git a/deploy/community/docker-compose.yml b/deploy/community/docker-compose.yml index e14aaa8a19..7f1fb3156e 100644 --- a/deploy/community/docker-compose.yml +++ b/deploy/community/docker-compose.yml @@ -5,6 +5,9 @@ services: steedos-community: image: steedos/steedos-community:latest container_name: steedos-community + build: + context: ./ + dockerfile: ./Dockerfile ports: - "80:80" - "443:443" diff --git a/deploy/community/fs/opt/steedos/templates/supervisord/redis.conf b/deploy/community/fs/opt/steedos/templates/supervisord/redis.conf index 97dea951ff..e88b5c9fbb 100644 --- a/deploy/community/fs/opt/steedos/templates/supervisord/redis.conf +++ b/deploy/community/fs/opt/steedos/templates/supervisord/redis.conf @@ -2,7 +2,7 @@ directory=/etc/redis ; The `--save` is for saving session data to disk more often, so recent sessions aren't cleared on restart. ; The empty string to `--logfile` is for logging to stdout so that supervisor can capture it. -command=redis-server --save 15 1 --dir /steedos-storage/data/redis --daemonize no --logfile "" +command=redis-server --save 15 1 --dir /steedos-storage/data/redis --daemonize no --logfile "" --bind 0.0.0.0 priority=5 autostart=true autorestart=true diff --git a/deploy/enterprise/docker-compose.yml b/deploy/enterprise/docker-compose.yml index 56b8640ac9..34de198165 100644 --- a/deploy/enterprise/docker-compose.yml +++ b/deploy/enterprise/docker-compose.yml @@ -5,6 +5,9 @@ services: steedos-enterprise: image: steedos/steedos-enterprise:latest container_name: steedos-enterprise + build: + context: ./ + dockerfile: ./Dockerfile ports: - "80:80" - "443:443" diff --git a/deploy/enterprise/fs/opt/steedos/templates/supervisord/redis.conf b/deploy/enterprise/fs/opt/steedos/templates/supervisord/redis.conf index 97dea951ff..e88b5c9fbb 100644 --- a/deploy/enterprise/fs/opt/steedos/templates/supervisord/redis.conf +++ b/deploy/enterprise/fs/opt/steedos/templates/supervisord/redis.conf @@ -2,7 +2,7 @@ directory=/etc/redis ; The `--save` is for saving session data to disk more often, so recent sessions aren't cleared on restart. ; The empty string to `--logfile` is for logging to stdout so that supervisor can capture it. -command=redis-server --save 15 1 --dir /steedos-storage/data/redis --daemonize no --logfile "" +command=redis-server --save 15 1 --dir /steedos-storage/data/redis --daemonize no --logfile "" --bind 0.0.0.0 priority=5 autostart=true autorestart=true