Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 10 additions & 22 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
services:
sublime_postgres:
image: postgres:13.2
sublime_postgres:
image: postgres:13.2
restart: unless-stopped
container_name: sublime_postgres
environment:
container_name: sublime_postgres
environment:
POSTGRES_USER: sublime
POSTGRES_DB: mantis
PGDATA: /data/postgres
env_file: sublime.env
volumes:
- postgres:/data/postgres
ports:
volumes:
- postgres_e2e:/data/postgres # different volume than dev to avoid overwriting data
ports:
- "5432:5432"
networks:
- net
networks:
- net
sublime_dashboard:
image: sublimesec/dashboard:dev
restart: unless-stopped
Expand Down Expand Up @@ -177,18 +177,6 @@ services:
/usr/bin/mc ls myminio;
exit 0;
"
sublime_hydra:
image: sublimesec/hydra-cpu:dev
restart: unless-stopped
ports:
- "8200:8200"
networks:
- net
container_name: sublime_hydra
environment:
WORKERS: 2
WEB_CONCURRENCY: 5
KEEP_ALIVE: 2
sublime_localstack:
container_name: sublime_localstack
image: localstack/localstack:4.10.0
Expand All @@ -207,7 +195,7 @@ networks:
net:
driver: bridge
volumes:
postgres:
postgres_e2e:
logs:
s3_data:
localstack:
Expand Down
Loading