Skip to content

Commit

Permalink
fix(docs): update docker setup example
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal-Leszczynski committed Jan 23, 2024
1 parent ff31f3e commit d96e5d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM scylladb/scylla-manager-agent:latest as agent
FROM scylladb/scylla:latest

COPY --from=agent /usr/bin/scylla-manager-agent /usr/bin/
RUN echo -e "[program:scylla-manager-agent]\n\
RUN echo "[program:scylla-manager-agent]\n\
command=/usr/bin/scylla-manager-agent\n\
autorestart=true\n\
stdout_logfile=/dev/stdout\n\
stdout_logfile_maxbytes=0\n\
stderr_logfile=/dev/stderr\n\
stderr_logfile_maxbytes=0" > /etc/supervisord.conf.d/scylla-manager-agent.conf
RUN mkdir -p /etc/scylla-manager-agent && echo -e "auth_token: token\n\
RUN mkdir -p /etc/scylla-manager-agent && echo "auth_token: token\n\
s3:\n\
access_key_id: minio\n\
secret_access_key: minio123\n\
Expand Down
2 changes: 1 addition & 1 deletion docs/source/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- scylla_manager_db_data:/var/lib/scylla
networks:
public:
command: --smp 1 --memory 100M
command: --smp 1 --memory 1G

scylla:
build:
Expand Down

0 comments on commit d96e5d8

Please sign in to comment.