Skip to content

Commit

Permalink
feat: init
Browse files Browse the repository at this point in the history
  • Loading branch information
rharkor committed Jan 25, 2024
1 parent bae0079 commit 475ba62
Show file tree
Hide file tree
Showing 77 changed files with 16,771 additions and 47,785 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "next-boilerplate",
"name": "chaos-monkey",

// Update the 'dockerComposeFile' list if you have more compose files or use different names.
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
Expand Down
12 changes: 6 additions & 6 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: DOCKER_DEPLOY_APP_IMAGE
container_name: #{PROJECT_NAME}#_app
container_name: chaos-monkey_app
restart: unless-stopped
logging:
driver: "json-file"
Expand All @@ -14,7 +14,7 @@ services:

crons:
image: DOCKER_DEPLOY_CRONS_IMAGE
container_name: #{PROJECT_NAME}#_crons
container_name: chaos-monkey_crons
restart: unless-stopped
logging:
driver: "json-file"
Expand All @@ -23,7 +23,7 @@ services:

docs:
image: DOCKER_DEPLOY_DOCS_IMAGE
container_name: #{PROJECT_NAME}#_docs
container_name: chaos-monkey_docs
restart: unless-stopped
logging:
driver: "json-file"
Expand All @@ -37,7 +37,7 @@ services:

landing:
image: DOCKER_DEPLOY_LANDING_IMAGE
container_name: #{PROJECT_NAME}#_landing
container_name: chaos-monkey_landing
restart: unless-stopped
logging:
driver: "json-file"
Expand All @@ -48,7 +48,7 @@ services:

db:
image: postgres:latest
container_name: #{PROJECT_NAME}#_db
container_name: chaos-monkey_db
restart: unless-stopped
volumes:
- postgres-data:/var/lib/postgresql/data
Expand All @@ -66,7 +66,7 @@ services:

redis:
restart: unless-stopped
container_name: #{PROJECT_NAME}#_redis
container_name: chaos-monkey_redis
image: redis:latest
command: /bin/sh -c "redis-server --requirepass ${REDIS_PASSWORD}"
logging:
Expand Down
Loading

0 comments on commit 475ba62

Please sign in to comment.